Files
hakorune/local_tests/test_birth_no_init.hako

17 lines
285 B
Plaintext

box LifeBox {
birth(lifeName) {
print("birth called with: " + lifeName)
}
getInfo() {
return "test"
}
}
static box Main {
main() {
local obj = new LifeBox("Alice")
print("Result: " + obj.getInfo())
return "done"
}
}