11 lines
No EOL
101 B
Text
11 lines
No EOL
101 B
Text
import core
|
|
|
|
struct Struct {
|
|
func *any
|
|
}
|
|
|
|
main() {
|
|
s := new(Struct)
|
|
s.func = core.exit
|
|
s.func()
|
|
} |