assassin-bug/test/index.js

17 lines
259 B
JavaScript
Raw Permalink Normal View History

2021-11-04 19:58:37 +00:00
const room = {
name: "A room",
onEnter() {
console.log("I entered");
return "meow";
},
onExit() {
console.log("I exited");
}
}
async function start() {
await room.onEnter();
await room.onExit();
}
start();