add log to input

This commit is contained in:
Scott Richmond 2025-07-02 16:20:22 -04:00
parent 1316c8228f
commit 2f4ab41a62

View File

@ -109,6 +109,7 @@ export function kill () {
// sends text into ludus (status: not working)
export function input (text) {
console.log("Main: calling `input` with ", text)
outbox.push({verb: "Input", data: text})
}