Files
hakorune/tests/development/test_builtin_delegation.hako

14 lines
283 B
Plaintext
Raw Permalink Normal View History

box TestChild : P2PBox {
constructor(nodeId, world) {
from P2PBox.constructor(nodeId, world)
me.test = "hello"
}
override send(intent, data, target) {
print("Child sending: " + intent)
from P2PBox.send(intent, data, target)
}
}