about summary refs log tree commit diff stats
path: root/repl.lua
blob: 556525c6707d9005bdf3b03adb8269a7e122de20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
--- lam.repl

local m = {}
local read = require("read")
local eval = require("eval")
local pp = require("pp").pp

local function schemeprint (x)
	-- if x == nil then return end
	if x == true then
		print("#t")
	elseif x == false then
		print("#f")
	else
		print(x)
	end
end

function m.repl (prompt, infile, out)
	-- PROMPT should be a string, INFILE is a filename, and OUT is either a
	-- filename, nil (in which case it will be stdout), or false (which
	-- suppresses output)
	local inport = read.inport(infile)
	if out ~= false then io.output(out) end
	io.output():setvbuf("line")
	if prompt then
		stderr = io.open("/dev/stderr", "w") -- Linux-only !
	end
	while true do
		if prompt then
			stderr:write(prompt)
			stderr:flush()
		end
		local x = read.read(inport)
		if x then
			local val = eval.eval(x)
			if out ~= false then
				schemeprint(val)
			end
		end
	end
	inport:close()
	stderr:close()
	io.output():close()
end

--------
return m