Imported from ../lua-4.0.1.tar.gz.
[lua.git] / README
blob81f767aee8dd3eb01235c4303e35e3ccbe695c5c
1 This is Lua 4.0.
2 See HISTORY for a summary of changes since the last version.
4 * What is Lua?
5   ------------
6   Lua is a powerful, light-weight programming language designed for extending
7   applications. Lua is also frequently used as a general-purpose, stand-alone
8   language.
10   Lua combines simple procedural syntax (similar to Pascal) with powerful
11   data description constructs based on associative arrays and extensible
12   semantics. Lua is dynamically typed, interpreted from bytecodes, and has
13   automatic memory management, making it ideal for configuration, scripting,
14   and rapid prototyping.
16   Lua is a language engine that you can embed into your application.
17   This means that, besides syntax and semantics, Lua has an API that
18   allows the application to exchange data with Lua programs and also to
19   extend Lua with C functions. In this sense, Lua can be regarded as a
20   language framework for building domain-specific languages.
22   Lua is implemented as a small library of C functions, written in ANSI C,
23   and compiles unmodified in all known platforms. The implementation goals
24   are simplicity, efficiency, portability, and low embedding cost.
25   The result is a fast language engine with small footprint, making it
26   ideal in embedded systems too.
28   Lua was awarded the first prize (technological category) in the
29   Second Compaq Award for Research and Development in Computer Science in 1997.
30   This award was a joint venture of Compaq Computer in Brazil, the Brazilian
31   Ministry of Science and Technology, and the Brazilian Academy of Sciences.
33   Lua has been used in many different projects around the world.
34   For a short list, see http://www.tecgraf.puc-rio.br/lua/uses.html .
36 * Availability
37   ------------
38   Lua is freely available for both academic and commercial purposes and
39   can be downloaded from the sites below. See COPYRIGHT for details.
41     Home page:  http://www.tecgraf.puc-rio.br/lua/
42                 http://csg.uwaterloo.ca/~lhf/lua/
43     In Brazil:  ftp://ftp.tecgraf.puc-rio.br/pub/lua/
44     In Canada:  ftp://csg.uwaterloo.ca/pub/lhf/lua/
45     In the US:  ftp://ftp.freesoftware.com/pub/languages/lua/
46     In Germany: ftp://ftp.uni-trier.de/pub/languages/lua/
47     In Germany: ftp://ftp.gwdg.de/pub/languages/lua/
48     In Greece:  ftp://ftp.ntua.gr/pub/lang/lua/
49     In Japan:   ftp://ftp.u-aizu.ac.jp/pub/lang/lua/
50     In Denmark: ftp://ftp.ucore.com/lua/dist
52 * Installation
53   ------------
54   See INSTALL.
56 * Contacting the authors
57   ----------------------
58   Lua was designed and implemented by Waldemar Celes, Roberto Ierusalimschy
59   and Luiz Henrique de Figueiredo.
60   They can be contacted by email at lua@tecgraf.puc-rio.br. 
62   Send your comments, questions, and bug reports to lua@tecgraf.puc-rio.br.
63   For reporting bugs, try also the mailing list: lua-l@tecgraf.puc-rio.br.
64   For more information about this list, including instructions on how to
65   subscribe, see http://www.tecgraf.puc-rio.br/lua/lua-l.html .
67   Lua is developed at TeCGraf, the Computer Graphics Technology Group
68   of PUC-Rio (the Pontifical Catholic University of Rio de Janeiro in Brazil). 
69   TeCGraf is a laboratory of the Department of Computer Science.
70   Dozens of industrial products developed by TeCGraf use Lua.
72 (end of README)