1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 21:57:38 +03:00
mal/impls/lua/step0_repl.lua

30 lines
418 B
Lua
Raw Permalink Normal View History

#!/usr/bin/env lua
local readline = require('readline')
function READ(str)
return str
end
function EVAL(ast, any)
return ast
end
function PRINT(exp)
return exp
end
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
print(rep(line))
end