├── .gitignore ├── COPYRIGHT ├── DIFFS ├── HISTORY ├── INSTALL ├── LICENSE.txt ├── MANIFEST ├── Makefile ├── Makefile.cross ├── Makefile.macos ├── README.lua ├── README.md ├── UPDATE ├── VERSION ├── config ├── config.cross ├── config.macos ├── configure ├── distrib ├── ._License.txt ├── License.txt └── mkmacos ├── doc ├── ._logo.gif ├── contents.html ├── logo.gif ├── lua.1 ├── lua.html ├── luac.1 ├── luac.html ├── manual.html └── readme.html ├── etc ├── Makefile ├── README ├── bin2c.c ├── compat.lua ├── doall.lua ├── lua.ico ├── lua.magic ├── lua.xpm ├── luser_number.h ├── luser_tests.h ├── min.c ├── noparser.c ├── saconfig.c └── trace.c ├── include ├── Makefile ├── compat.h ├── lauxlib.h ├── lua.h └── lualib.h ├── ls-lR.txt ├── src ├── Makefile ├── Makefile.cross ├── Makefile.macos ├── README ├── compat.c ├── lapi.c ├── lapi.h ├── lcode.c ├── lcode.h ├── ldebug.c ├── ldebug.h ├── ldo.c ├── ldo.h ├── ldump.c ├── lfunc.c ├── lfunc.h ├── lgc.c ├── lgc.h ├── lib │ ├── Makefile │ ├── Makefile.cross │ ├── Makefile.macos │ ├── README │ ├── lauxlib.c │ ├── lbaselib.c │ ├── lbwlib.c │ ├── ldblib.c │ ├── liolib.c │ ├── lmathlib.c │ ├── loadlib.c │ ├── lpacklib.c │ ├── lstrlib.c │ └── ltablib.c ├── llex.c ├── llex.h ├── llimits.h ├── lmem.c ├── lmem.h ├── lobject.c ├── lobject.h ├── lopcodes.c ├── lopcodes.h ├── lparser.c ├── lparser.h ├── lstate.c ├── lstate.h ├── lstring.c ├── lstring.h ├── ltable.c ├── ltable.h ├── ltests.c ├── ltm.c ├── ltm.h ├── lua │ ├── Makefile │ ├── README │ └── lua.c ├── luac │ ├── Makefile │ ├── Makefile.cross │ ├── Makefile.macos │ ├── README │ ├── luac.c │ ├── pdb.c │ ├── pdb.h │ ├── pluac.c │ ├── print.c │ └── resources.h ├── lundump.c ├── lundump.h ├── lvm.c ├── lvm.h ├── lzio.c └── lzio.h └── test ├── README ├── bisect.lua ├── cf.lua ├── echo.lua ├── env.lua ├── factorial.lua ├── fib.lua ├── fibfor.lua ├── globals.lua ├── hello.lua ├── life.lua ├── lua ├── luac ├── luac.lua ├── printf.lua ├── readonly.lua ├── sieve.lua ├── sort.lua ├── table.lua ├── trace-calls.lua ├── trace-globals.lua ├── undefined.lua └── xd.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /DIFFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/DIFFS -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/HISTORY -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/Makefile.cross -------------------------------------------------------------------------------- /Makefile.macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/Makefile.macos -------------------------------------------------------------------------------- /README.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/README.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/README.md -------------------------------------------------------------------------------- /UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/UPDATE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | VERSION=2.0 2 | -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/config -------------------------------------------------------------------------------- /config.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/config.cross -------------------------------------------------------------------------------- /config.macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/config.macos -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/configure -------------------------------------------------------------------------------- /distrib/._License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/distrib/._License.txt -------------------------------------------------------------------------------- /distrib/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/distrib/License.txt -------------------------------------------------------------------------------- /distrib/mkmacos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/distrib/mkmacos -------------------------------------------------------------------------------- /doc/._logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/._logo.gif -------------------------------------------------------------------------------- /doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/contents.html -------------------------------------------------------------------------------- /doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/logo.gif -------------------------------------------------------------------------------- /doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/lua.1 -------------------------------------------------------------------------------- /doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/lua.html -------------------------------------------------------------------------------- /doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/luac.1 -------------------------------------------------------------------------------- /doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/luac.html -------------------------------------------------------------------------------- /doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/manual.html -------------------------------------------------------------------------------- /doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/doc/readme.html -------------------------------------------------------------------------------- /etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/Makefile -------------------------------------------------------------------------------- /etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/README -------------------------------------------------------------------------------- /etc/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/bin2c.c -------------------------------------------------------------------------------- /etc/compat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/compat.lua -------------------------------------------------------------------------------- /etc/doall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/doall.lua -------------------------------------------------------------------------------- /etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/lua.ico -------------------------------------------------------------------------------- /etc/lua.magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/lua.magic -------------------------------------------------------------------------------- /etc/lua.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/lua.xpm -------------------------------------------------------------------------------- /etc/luser_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/luser_number.h -------------------------------------------------------------------------------- /etc/luser_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/luser_tests.h -------------------------------------------------------------------------------- /etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/min.c -------------------------------------------------------------------------------- /etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/noparser.c -------------------------------------------------------------------------------- /etc/saconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/saconfig.c -------------------------------------------------------------------------------- /etc/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/etc/trace.c -------------------------------------------------------------------------------- /include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/include/Makefile -------------------------------------------------------------------------------- /include/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/include/compat.h -------------------------------------------------------------------------------- /include/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/include/lauxlib.h -------------------------------------------------------------------------------- /include/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/include/lua.h -------------------------------------------------------------------------------- /include/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/include/lualib.h -------------------------------------------------------------------------------- /ls-lR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/ls-lR.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/Makefile.cross -------------------------------------------------------------------------------- /src/Makefile.macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/Makefile.macos -------------------------------------------------------------------------------- /src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/README -------------------------------------------------------------------------------- /src/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/compat.c -------------------------------------------------------------------------------- /src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lapi.c -------------------------------------------------------------------------------- /src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lapi.h -------------------------------------------------------------------------------- /src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lcode.c -------------------------------------------------------------------------------- /src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lcode.h -------------------------------------------------------------------------------- /src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ldebug.c -------------------------------------------------------------------------------- /src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ldebug.h -------------------------------------------------------------------------------- /src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ldo.c -------------------------------------------------------------------------------- /src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ldo.h -------------------------------------------------------------------------------- /src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ldump.c -------------------------------------------------------------------------------- /src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lfunc.c -------------------------------------------------------------------------------- /src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lfunc.h -------------------------------------------------------------------------------- /src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lgc.c -------------------------------------------------------------------------------- /src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lgc.h -------------------------------------------------------------------------------- /src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/Makefile -------------------------------------------------------------------------------- /src/lib/Makefile.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/Makefile.cross -------------------------------------------------------------------------------- /src/lib/Makefile.macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/Makefile.macos -------------------------------------------------------------------------------- /src/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/README -------------------------------------------------------------------------------- /src/lib/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/lauxlib.c -------------------------------------------------------------------------------- /src/lib/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/lbaselib.c -------------------------------------------------------------------------------- /src/lib/lbwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/lbwlib.c -------------------------------------------------------------------------------- /src/lib/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/ldblib.c -------------------------------------------------------------------------------- /src/lib/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/liolib.c -------------------------------------------------------------------------------- /src/lib/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/lmathlib.c -------------------------------------------------------------------------------- /src/lib/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/loadlib.c -------------------------------------------------------------------------------- /src/lib/lpacklib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/lpacklib.c -------------------------------------------------------------------------------- /src/lib/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/lstrlib.c -------------------------------------------------------------------------------- /src/lib/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lib/ltablib.c -------------------------------------------------------------------------------- /src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/llex.c -------------------------------------------------------------------------------- /src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/llex.h -------------------------------------------------------------------------------- /src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/llimits.h -------------------------------------------------------------------------------- /src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lmem.c -------------------------------------------------------------------------------- /src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lmem.h -------------------------------------------------------------------------------- /src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lobject.c -------------------------------------------------------------------------------- /src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lobject.h -------------------------------------------------------------------------------- /src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lopcodes.c -------------------------------------------------------------------------------- /src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lopcodes.h -------------------------------------------------------------------------------- /src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lparser.c -------------------------------------------------------------------------------- /src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lparser.h -------------------------------------------------------------------------------- /src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lstate.c -------------------------------------------------------------------------------- /src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lstate.h -------------------------------------------------------------------------------- /src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lstring.c -------------------------------------------------------------------------------- /src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lstring.h -------------------------------------------------------------------------------- /src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ltable.c -------------------------------------------------------------------------------- /src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ltable.h -------------------------------------------------------------------------------- /src/ltests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ltests.c -------------------------------------------------------------------------------- /src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ltm.c -------------------------------------------------------------------------------- /src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/ltm.h -------------------------------------------------------------------------------- /src/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lua/Makefile -------------------------------------------------------------------------------- /src/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lua/README -------------------------------------------------------------------------------- /src/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lua/lua.c -------------------------------------------------------------------------------- /src/luac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/Makefile -------------------------------------------------------------------------------- /src/luac/Makefile.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/Makefile.cross -------------------------------------------------------------------------------- /src/luac/Makefile.macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/Makefile.macos -------------------------------------------------------------------------------- /src/luac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/README -------------------------------------------------------------------------------- /src/luac/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/luac.c -------------------------------------------------------------------------------- /src/luac/pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/pdb.c -------------------------------------------------------------------------------- /src/luac/pdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/pdb.h -------------------------------------------------------------------------------- /src/luac/pluac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/pluac.c -------------------------------------------------------------------------------- /src/luac/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/print.c -------------------------------------------------------------------------------- /src/luac/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/luac/resources.h -------------------------------------------------------------------------------- /src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lundump.c -------------------------------------------------------------------------------- /src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lundump.h -------------------------------------------------------------------------------- /src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lvm.c -------------------------------------------------------------------------------- /src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lvm.h -------------------------------------------------------------------------------- /src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lzio.c -------------------------------------------------------------------------------- /src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/src/lzio.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/README -------------------------------------------------------------------------------- /test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/bisect.lua -------------------------------------------------------------------------------- /test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/cf.lua -------------------------------------------------------------------------------- /test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/echo.lua -------------------------------------------------------------------------------- /test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/env.lua -------------------------------------------------------------------------------- /test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/factorial.lua -------------------------------------------------------------------------------- /test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/fib.lua -------------------------------------------------------------------------------- /test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/fibfor.lua -------------------------------------------------------------------------------- /test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/globals.lua -------------------------------------------------------------------------------- /test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/life.lua -------------------------------------------------------------------------------- /test/lua: -------------------------------------------------------------------------------- 1 | ../bin/lua -------------------------------------------------------------------------------- /test/luac: -------------------------------------------------------------------------------- 1 | ../bin/luac -------------------------------------------------------------------------------- /test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/luac.lua -------------------------------------------------------------------------------- /test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/printf.lua -------------------------------------------------------------------------------- /test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/readonly.lua -------------------------------------------------------------------------------- /test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/sieve.lua -------------------------------------------------------------------------------- /test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/sort.lua -------------------------------------------------------------------------------- /test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/table.lua -------------------------------------------------------------------------------- /test/trace-calls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/trace-calls.lua -------------------------------------------------------------------------------- /test/trace-globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/trace-globals.lua -------------------------------------------------------------------------------- /test/undefined.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/undefined.lua -------------------------------------------------------------------------------- /test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classilla/plua2c/HEAD/test/xd.lua --------------------------------------------------------------------------------