Files
hakorune/local_tests/phase6_ref_set_get.nyash

10 lines
107 B
Plaintext
Raw Normal View History

static box Main {
main() {
local o
o = new Obj()
o.x = 1
print(o.x)
return o.x
}
}