[l51] first commit
commit5fc3220879b14e5294902d259e91479d4acd31ac
authorJack J. Mao <jack@func.xyz>
Thu, 11 Apr 2024 11:31:58 +0000 (11 19:31 +0800)
committerJack J. Mao <jack@func.xyz>
Thu, 11 Apr 2024 11:31:58 +0000 (11 19:31 +0800)
tree94923d0fa51d68d6030148d564f3fa88a46ca663
parent4174fa802dc0ae4de9208b12e032e02d5a66568f
[l51] first commit
105 files changed:
src/func.xyz/l51/.gitignore [new file with mode: 0644]
src/func.xyz/l51/COPYRIGHT [new file with mode: 0644]
src/func.xyz/l51/HISTORY [new file with mode: 0644]
src/func.xyz/l51/INSTALL [new file with mode: 0644]
src/func.xyz/l51/Makefile [new file with mode: 0644]
src/func.xyz/l51/README [new file with mode: 0644]
src/func.xyz/l51/doc/contents.html [new file with mode: 0644]
src/func.xyz/l51/doc/cover.png [new file with mode: 0644]
src/func.xyz/l51/doc/logo.gif [new file with mode: 0644]
src/func.xyz/l51/doc/lua.1 [new file with mode: 0644]
src/func.xyz/l51/doc/lua.css [new file with mode: 0644]
src/func.xyz/l51/doc/lua.html [new file with mode: 0644]
src/func.xyz/l51/doc/luac.1 [new file with mode: 0644]
src/func.xyz/l51/doc/luac.html [new file with mode: 0644]
src/func.xyz/l51/doc/manual.css [new file with mode: 0644]
src/func.xyz/l51/doc/manual.html [new file with mode: 0644]
src/func.xyz/l51/doc/readme.html [new file with mode: 0644]
src/func.xyz/l51/etc/Makefile [new file with mode: 0644]
src/func.xyz/l51/etc/README [new file with mode: 0644]
src/func.xyz/l51/etc/all.c [new file with mode: 0644]
src/func.xyz/l51/etc/lua.hpp [new file with mode: 0644]
src/func.xyz/l51/etc/lua.ico [new file with mode: 0644]
src/func.xyz/l51/etc/lua.pc [new file with mode: 0644]
src/func.xyz/l51/etc/luavs.bat [new file with mode: 0644]
src/func.xyz/l51/etc/min.c [new file with mode: 0644]
src/func.xyz/l51/etc/noparser.c [new file with mode: 0644]
src/func.xyz/l51/etc/strict.lua [new file with mode: 0644]
src/func.xyz/l51/main.go [deleted file]
src/func.xyz/l51/src/Makefile [new file with mode: 0644]
src/func.xyz/l51/src/lapi.c [new file with mode: 0644]
src/func.xyz/l51/src/lapi.h [new file with mode: 0644]
src/func.xyz/l51/src/lauxlib.c [new file with mode: 0644]
src/func.xyz/l51/src/lauxlib.h [new file with mode: 0644]
src/func.xyz/l51/src/lbaselib.c [new file with mode: 0644]
src/func.xyz/l51/src/lcode.c [new file with mode: 0644]
src/func.xyz/l51/src/lcode.h [new file with mode: 0644]
src/func.xyz/l51/src/ldblib.c [new file with mode: 0644]
src/func.xyz/l51/src/ldebug.c [new file with mode: 0644]
src/func.xyz/l51/src/ldebug.h [new file with mode: 0644]
src/func.xyz/l51/src/ldo.c [new file with mode: 0644]
src/func.xyz/l51/src/ldo.h [new file with mode: 0644]
src/func.xyz/l51/src/ldump.c [new file with mode: 0644]
src/func.xyz/l51/src/lfunc.c [new file with mode: 0644]
src/func.xyz/l51/src/lfunc.h [new file with mode: 0644]
src/func.xyz/l51/src/lgc.c [new file with mode: 0644]
src/func.xyz/l51/src/lgc.h [new file with mode: 0644]
src/func.xyz/l51/src/linit.c [new file with mode: 0644]
src/func.xyz/l51/src/liolib.c [new file with mode: 0644]
src/func.xyz/l51/src/llex.c [new file with mode: 0644]
src/func.xyz/l51/src/llex.h [new file with mode: 0644]
src/func.xyz/l51/src/llimits.h [new file with mode: 0644]
src/func.xyz/l51/src/lmathlib.c [new file with mode: 0644]
src/func.xyz/l51/src/lmem.c [new file with mode: 0644]
src/func.xyz/l51/src/lmem.h [new file with mode: 0644]
src/func.xyz/l51/src/loadlib.c [new file with mode: 0644]
src/func.xyz/l51/src/lobject.c [new file with mode: 0644]
src/func.xyz/l51/src/lobject.h [new file with mode: 0644]
src/func.xyz/l51/src/lopcodes.c [new file with mode: 0644]
src/func.xyz/l51/src/lopcodes.h [new file with mode: 0644]
src/func.xyz/l51/src/loslib.c [new file with mode: 0644]
src/func.xyz/l51/src/lparser.c [new file with mode: 0644]
src/func.xyz/l51/src/lparser.h [new file with mode: 0644]
src/func.xyz/l51/src/lstate.c [new file with mode: 0644]
src/func.xyz/l51/src/lstate.h [new file with mode: 0644]
src/func.xyz/l51/src/lstring.c [new file with mode: 0644]
src/func.xyz/l51/src/lstring.h [new file with mode: 0644]
src/func.xyz/l51/src/lstrlib.c [new file with mode: 0644]
src/func.xyz/l51/src/ltable.c [new file with mode: 0644]
src/func.xyz/l51/src/ltable.h [new file with mode: 0644]
src/func.xyz/l51/src/ltablib.c [new file with mode: 0644]
src/func.xyz/l51/src/ltm.c [new file with mode: 0644]
src/func.xyz/l51/src/ltm.h [new file with mode: 0644]
src/func.xyz/l51/src/lua.c [new file with mode: 0644]
src/func.xyz/l51/src/lua.h [new file with mode: 0644]
src/func.xyz/l51/src/luac.c [new file with mode: 0644]
src/func.xyz/l51/src/luaconf.h [new file with mode: 0644]
src/func.xyz/l51/src/lualib.h [new file with mode: 0644]
src/func.xyz/l51/src/lundump.c [new file with mode: 0644]
src/func.xyz/l51/src/lundump.h [new file with mode: 0644]
src/func.xyz/l51/src/lvm.c [new file with mode: 0644]
src/func.xyz/l51/src/lvm.h [new file with mode: 0644]
src/func.xyz/l51/src/lzio.c [new file with mode: 0644]
src/func.xyz/l51/src/lzio.h [new file with mode: 0644]
src/func.xyz/l51/src/print.c [new file with mode: 0644]
src/func.xyz/l51/test.lua [deleted file]
src/func.xyz/l51/test/README [new file with mode: 0644]
src/func.xyz/l51/test/bisect.lua [new file with mode: 0644]
src/func.xyz/l51/test/cf.lua [new file with mode: 0644]
src/func.xyz/l51/test/echo.lua [new file with mode: 0644]
src/func.xyz/l51/test/env.lua [new file with mode: 0644]
src/func.xyz/l51/test/factorial.lua [new file with mode: 0644]
src/func.xyz/l51/test/fib.lua [new file with mode: 0644]
src/func.xyz/l51/test/fibfor.lua [new file with mode: 0644]
src/func.xyz/l51/test/globals.lua [new file with mode: 0644]
src/func.xyz/l51/test/hello.lua [new file with mode: 0644]
src/func.xyz/l51/test/life.lua [new file with mode: 0644]
src/func.xyz/l51/test/luac.lua [new file with mode: 0644]
src/func.xyz/l51/test/printf.lua [new file with mode: 0644]
src/func.xyz/l51/test/readonly.lua [new file with mode: 0644]
src/func.xyz/l51/test/sieve.lua [new file with mode: 0644]
src/func.xyz/l51/test/sort.lua [new file with mode: 0644]
src/func.xyz/l51/test/table.lua [new file with mode: 0644]
src/func.xyz/l51/test/trace-calls.lua [new file with mode: 0644]
src/func.xyz/l51/test/trace-globals.lua [new file with mode: 0644]
src/func.xyz/l51/test/xd.lua [new file with mode: 0644]