Some checks failed
Build and Deploy / build-macos (push) Failing after 4s
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
Build and Deploy / build-linux (push) Has been cancelled
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
var os = use('os')
|
|
|
|
$_.start(e => {
|
|
console.log(json.encode(e.actor))
|
|
send(e.actor, { message: "Hello! Good to go?" }, msg => {
|
|
console.log(`Original sender got message back: ${json.encode(msg)}. Stopping!`)
|
|
$_.stop()
|
|
})
|
|
}, "tests/reply.js")
|