diff options
Diffstat (limited to 'README')
| -rw-r--r-- | README | 47 |
1 files changed, 25 insertions, 22 deletions
@@ -5,43 +5,46 @@ Dozens of industrial products developed by TeCGraf use Lua. * Some features of Lua - Lua has a simple, pascal-like, syntax. - Variables need no declaration, but Lua has user-controlled type constructors. - Lua has powerful data description constructs (e.g., associative arrays). - Functions can receive a variable number of arguments and can return multiple - values. - Lua programs are compiled into bytecodes, which are then interpreted to - simulate a virtual machine. - Lua is written in ANSI C and is completely portable. + + a simple, pascal-like, syntax; + + powerful data description constructs (e.g., associative arrays); + + user-controlled type constructors; + + fallbacks for extending the meaning of the language in unconventional ways; + + Lua programs are compiled into bytecodes, which are then interpreted to + simulate a virtual machine; + + portable, written in ANSI C. -* Coming soon - Object-oriented extensions. - Lazy evaluation. +* Availability + ftp://ftp.icad.puc-rio.br/pub/lua/lua-2.1.tar.gz + http://www.inf.puc-rio.br/projetos/roberto/lua.html + +* Changes since version 1.1 (current version is 2.1) + + object-oriented support; + + fallbacks; + + simplified syntax for tables; + + many internal improvements. * Installing To make, simply type domake. If make succeeds, you get an interpreter in ./bin/lua. The libraries are in ./lib. The include files are in ./include. You don't need the other directories for development. - There is documentation in ./doc and tests in ./test. - The documentation includes a reference manual and an article on the - design and implementation of Lua. + There is a reference manual in ./doc and tests in ./test. This distribution is biased towards SunOS 4 with gcc but it is simple to change the Makefiles for other systems. + If you are running SunOs, type also "domake dynamic" to build shared + libraries in ./lib. * Legal matters - Lua is not in the public domain; TeCGraf keeps its copyright. - Nevertheless, Lua is freely available for academic purposes by anonymous ftp - at ftp.icad.puc-rio.br:/pub/lua/lua-1.1.tar.Z. - For commercial purposes, please contact us. + Lua is now freely available for both academic and commercial purposes. + Lua is not in the public domain; TeCGraf keeps its copyright. * Contacting the authors Send your comments, bug reports and anything else to lhf@icad.puc-rio.br. Please send me email if you download Lua so that we can know how far it goes. -- -Luiz Henrique de Figueiredo email: lhf@icad.puc-rio.br -TeCGraf-Grupo de Tecnologia em Computacao Grafica, ITS, PUC-Rio -Rua Marques de Sao Vicente 225 voice: +55 21 529-9424 -22453-900 Rio de Janeiro, RJ, Brasil fax: +55 21 511-5645 +Luiz Henrique de Figueiredo email: lhf@icad.puc-rio.br +TeCGraf-Grupo de Tecnologia em Computacao Grafica, Dep. Informatica, PUC-Rio +Rua Marques de Sao Vicente 225 voice: +55 21 529-9424 +22453-900 Rio de Janeiro, RJ, Brasil fax: +55 21 511-5645 -- |
