12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
fn onInit(node: opaque) {
|
|
print "child.toy:onInit() called";
|
|
}
|
|
|
|
fn onStep(node: opaque) {
|
|
print "child.toy:onStep()";
|
|
}
|
|
|
|
fn onFree(node: opaque) {
|
|
print "child.toy:onFree() called";
|
|
}
|