13 lines
191 B
Plaintext
13 lines
191 B
Plaintext
|
|
static box Main {
|
||
|
|
helper(s) {
|
||
|
|
return s.length()
|
||
|
|
}
|
||
|
|
main(args) {
|
||
|
|
local console = new ConsoleBox()
|
||
|
|
local n = me.helper("abc")
|
||
|
|
console.println("n=" + n)
|
||
|
|
return 0
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|