Compiles with Lua 5.1.4 and Lua 5.2.0-beta, although the makefile needs sorting out to take maybe a version number and also the local paths need removing.

This commit is contained in:
Liam Devine 2011-07-04 23:31:14 +01:00 committed by Sam Roberts
parent a984607f28
commit e15ed19db6
17 changed files with 70 additions and 49 deletions

View file

@ -10,6 +10,6 @@ while 1 do
command = assert(control:receive());
assert(control:send(ack));
print(command);
(loadstring(command))();
(load(command))();
end
end