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