Added REPL.
This commit is contained in:
parent
bce6cd2e21
commit
f8f5e7b653
17
nomsu.lua
17
nomsu.lua
@ -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
|
||||
|
14
nomsu.moon
14
nomsu.moon
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user