change scripts/ to luascripts/

This commit is contained in:
Philippe Teuwen 2019-08-21 23:17:01 +02:00
commit a8ee33baf4
47 changed files with 8 additions and 8 deletions

View file

@ -1,16 +0,0 @@
--[[
A sampe script file on how to implement at cmd line inteface.
--]]
print("This is how a cmd-line interface could be implemented\nPrint 'exit' to exit.\n")
local answer
repeat
io.write("$>")
io.flush()
answer = io.read()
if answer ~= 'exit' then
local func = assert(loadstring("return " .. answer))
io.write("\n"..tostring(func() or "").."\n");
end--]]
until answer == "exit"
print("Bye\n");