From e82a8286b66175739b294a0797658a9370004e5a Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 13 Oct 2017 18:14:03 -0700 Subject: [PATCH] Removed io.write() stuff. --- examples/how_do_i.nom | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/how_do_i.nom b/examples/how_do_i.nom index 9aa15c6..486ea19 100644 --- a/examples/how_do_i.nom +++ b/examples/how_do_i.nom @@ -238,8 +238,7 @@ say both (..) # The "lua block %" and "lua expr %" macros can be used to write raw lua code: rule [say the time] =: lua block ".." - |io.write("The OS time is: ") - |io.write(tostring(os.time()).."\\n") + |nomsu:writeln("The OS time is: "..os.time()); say the time say "Math expression result is: \(lua expr "(1 + 2*3 + 3*4)^2")"