add log to input

Former-commit-id: 2f4ab41a62
This commit is contained in:
Scott Richmond 2025-07-02 16:20:22 -04:00
parent f1a89cedb4
commit 7e24295ff7

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})
}