10 lines
158 B
Plaintext
10 lines
158 B
Plaintext
|
|
static box Main {
|
||
|
|
init { result }
|
||
|
|
|
||
|
|
main() {
|
||
|
|
local x = 10
|
||
|
|
local y = 20
|
||
|
|
me.result = x + y
|
||
|
|
return me.result
|
||
|
|
}
|
||
|
|
}
|