Removed io.write() stuff.

This commit is contained in:
Bruce Hill 2017-10-13 18:14:03 -07:00
parent a176c7dfb5
commit e82a8286b6

View File

@ -238,8 +238,7 @@ say both (..)
# The "lua block %" and "lua expr %" macros can be used to write raw lua code: # The "lua block %" and "lua expr %" macros can be used to write raw lua code:
rule [say the time] =: rule [say the time] =:
lua block ".." lua block ".."
|io.write("The OS time is: ") |nomsu:writeln("The OS time is: "..os.time());
|io.write(tostring(os.time()).."\\n")
say the time say the time
say "Math expression result is: \(lua expr "(1 + 2*3 + 3*4)^2")" say "Math expression result is: \(lua expr "(1 + 2*3 + 3*4)^2")"