add a cool lua repl

This commit is contained in:
jacqueline
2023-12-13 16:10:08 +11:00
parent 5a2f0b08e0
commit 64b106c13e
87 changed files with 8150 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
LUA_FILES=$(shell find repl -type f -name '*.lua')
.PHONY: doc install
doc:
luadoc -d doc $(LUA_FILES)
install:
# TODO
test:
LUA_INIT='' LUA_PATH=';;$(LUA_PATH);?.lua;?/init.lua;t/lib/?.lua' prove
clean:
rm -rf doc/