Files
cell/tests/actor_helper_echo.ce

6 lines
141 B
Plaintext

// Helper actor that echoes messages back with {pong: true}
$receiver(function(msg) {
send(msg, {pong: true})
})
var _t = $delay($stop, 5)