9 lines
106 B
Plaintext
9 lines
106 B
Plaintext
static box Main {
|
|
main() {
|
|
local o
|
|
o = new Obj()
|
|
o.x = 1
|
|
print(o.x)
|
|
return o.x
|
|
}
|
|
} |