From 2f4ab41a62903b586dbd1c29deafba7ec9d83eec Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Wed, 2 Jul 2025 16:20:22 -0400 Subject: [PATCH] add log to input --- pkg/ludus.js | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/ludus.js b/pkg/ludus.js index 2b2c5f1..ef36b49 100644 --- a/pkg/ludus.js +++ b/pkg/ludus.js @@ -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}) }