From cf42631655e7d3a26375da562785c9b6f4df5609 Mon Sep 17 00:00:00 2001 From: Lisa Milne Date: Wed, 13 Dec 2023 21:21:27 +1000 Subject: [PATCH] fix a bug in a 3-line program --- clite/commands.js | 1 + 1 file changed, 1 insertion(+) diff --git a/clite/commands.js b/clite/commands.js index db3c5c4..8eccbf8 100644 --- a/clite/commands.js +++ b/clite/commands.js @@ -514,6 +514,7 @@ Options: }); clite.commands.load('view',function(args,env,io) { + var stdio = io.include('stdio'); stdio.printf('view is under development\n'); return 0; });