Nate Starkey f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
..
Makefile f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
README f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
all.c f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
lua.hpp f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
lua.ico f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
lua.pc f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
luavs.bat f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
min.c f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
noparser.c f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos
strict.lua f99a263e58 Should have forked this earlier. Implements basic types(Vectori/f,Colourb/f), Document, and Element so far. Interpreter is also a Plugin, so it will start up when libRocket does. %!s(int64=13) %!d(string=hai) anos

README

This directory contains some useful files and code.
Unlike the code in ../src, everything here is in the public domain.

If any of the makes fail, you're probably not using the same libraries
used to build Lua. Set MYLIBS in Makefile accordingly.

all.c
Full Lua interpreter in a single file.
Do "make one" for a demo.

lua.hpp
Lua header files for C++ using 'extern "C"'.

lua.ico
A Lua icon for Windows (and web sites: save as favicon.ico).
Drawn by hand by Markus Gritsch .

lua.pc
pkg-config data for Lua

luavs.bat
Script to build Lua under "Visual Studio .NET Command Prompt".

min.c
A minimal Lua interpreter.
Good for learning and for starting your own.
Do "make min" for a demo.

noparser.c
Linking with noparser.o avoids loading the parsing modules in lualib.a.
Do "make noparser" for a demo.

strict.lua
Traps uses of undeclared global variables.
Do "make strict" for a demo.