Added REPL.

This commit is contained in:
Bruce Hill 2017-09-14 15:35:06 -07:00
parent bce6cd2e21
commit f8f5e7b653
2 changed files with 31 additions and 0 deletions

View File

@ -856,5 +856,22 @@ if arg and arg[1] then
load()(c, {})
]])
end
elseif arg then
local c = NomsuCompiler()
while true do
local buff = ""
while true do
io.write(">> ")
local line = io.read("*L")
if line == "\n" or not line then
break
end
buff = buff .. line
end
if #buff == 0 then
break
end
c:run(buff)
end
end
return NomsuCompiler

View File

@ -603,5 +603,19 @@ if arg and arg[1]
local c = NomsuCompiler()
load()(c, {})
]]
elseif arg
-- REPL:
c = NomsuCompiler()
while true
buff = ""
while true
io.write(">> ")
line = io.read("*L")
if line == "\n" or not line
break
buff ..= line
if #buff == 0
break
c\run(buff)
return NomsuCompiler