diff options
Diffstat (limited to 'lua/step0_repl.lua')
| -rwxr-xr-x | lua/step0_repl.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/step0_repl.lua b/lua/step0_repl.lua index 24584d2..bb082a5 100755 --- a/lua/step0_repl.lua +++ b/lua/step0_repl.lua @@ -18,6 +18,10 @@ function rep(str) return PRINT(EVAL(READ(str),"")) 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 |
