Files
hakorune/local_tests/test_normal_field.hako

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
}
}