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