11 lines
183 B
Plaintext
11 lines
183 B
Plaintext
|
|
static box Main {
|
||
|
|
init { obj }
|
||
|
|
|
||
|
|
main() {
|
||
|
|
me.obj = new StringBox("test")
|
||
|
|
local result = me.obj.length()
|
||
|
|
print(result)
|
||
|
|
return result
|
||
|
|
}
|
||
|
|
}
|