aboutsummaryrefslogtreecommitdiff
path: root/lua/step2_eval.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/step2_eval.lua')
-rwxr-xr-xlua/step2_eval.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/step2_eval.lua b/lua/step2_eval.lua
index 7487064..22ac8cf 100755
--- a/lua/step2_eval.lua
+++ b/lua/step2_eval.lua
@@ -58,6 +58,10 @@ function rep(str)
return PRINT(EVAL(READ(str),repl_env))
end
+if #arg > 0 and arg[1] == "--raw" then
+ readline.raw = true
+end
+
while true do
line = readline.readline("user> ")
if not line then break end