Files
hakorune/local_tests/test_field_operations.hako

19 lines
265 B
Plaintext
Raw Permalink Normal View History

box Counter {
init { count }
pack() {
me.count = 0
}
increment() {
me.count = me.count + 1
return me.count
}
}
static box Main {
main() {
local c = new Counter()
return c.increment()
}
}