12 lines
161 B
Plaintext
12 lines
161 B
Plaintext
|
|
box LifeBox {
|
||
|
|
birth() {
|
||
|
|
print("birth called")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
static box Main {
|
||
|
|
main() {
|
||
|
|
local obj = new LifeBox()
|
||
|
|
return "done"
|
||
|
|
}
|
||
|
|
}
|