summaryrefslogtreecommitdiff
path: root/etc/README
diff options
context:
space:
mode:
Diffstat (limited to 'etc/README')
-rw-r--r--etc/README14
1 files changed, 10 insertions, 4 deletions
diff --git a/etc/README b/etc/README
index 47626769..5e42ec56 100644
--- a/etc/README
+++ b/etc/README
@@ -3,19 +3,21 @@ Unlike the code in ../src, everything here is in the public domain.
all.c
Full Lua interpreter in a single file.
- Do "make 1".
+ Do "make one".
lua.hpp
- Lua header files for C++.
- This keeps the C interface to Lua. But Lua also compiles as clean C++.
+ Lua header files for C++ using 'extern "C"'.
lua.ico
- A Lua icon for Windows (and web sites, as favicon.ico).
+ A Lua icon for Windows (and web sites: save as favicon.ico).
Drawn by hand by Markus Gritsch <gritsch@iue.tuwien.ac.at>.
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.
@@ -23,3 +25,7 @@ min.c
noparser.c
Linking with noparser.o avoids loading the parsing modules in lualib.a.
Do "make noparser" to see a demo.
+
+strict.lua
+ Traps uses of undeclared global variables.
+