File: README

package info (click to toggle)
gltron 0.70final-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,752 kB
  • ctags: 4,793
  • sloc: ansic: 19,182; sh: 3,220; cpp: 973; makefile: 269
file content (72 lines) | stat: -rw-r--r-- 3,256 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
This is Lua 4.0.
See HISTORY for a summary of changes since the last version.

* What is Lua?
  ------------
  Lua is a powerful, light-weight programming language designed for extending
  applications. Lua is also frequently used as a general-purpose, stand-alone
  language.

  Lua combines simple procedural syntax (similar to Pascal) with powerful
  data description constructs based on associative arrays and extensible
  semantics. Lua is dynamically typed, interpreted from bytecodes, and has
  automatic memory management, making it ideal for configuration, scripting,
  and rapid prototyping.

  Lua is a language engine that you can embed into your application.
  This means that, besides syntax and semantics, Lua has an API that
  allows the application to exchange data with Lua programs and also to
  extend Lua with C functions. In this sense, Lua can be regarded as a
  language framework for building domain-specific languages.

  Lua is implemented as a small library of C functions, written in ANSI C,
  and compiles unmodified in all known platforms. The implementation goals
  are simplicity, efficiency, portability, and low embedding cost.
  The result is a fast language engine with small footprint, making it
  ideal in embedded systems too.

  Lua was awarded the first prize (technological category) in the
  Second Compaq Award for Research and Development in Computer Science in 1997.
  This award was a joint venture of Compaq Computer in Brazil, the Brazilian
  Ministry of Science and Technology, and the Brazilian Academy of Sciences.

  Lua has been used in many different projects around the world.
  For a short list, see http://www.tecgraf.puc-rio.br/lua/uses.html .

* Availability
  ------------
  Lua is freely available for both academic and commercial purposes and
  can be downloaded from the sites below. See COPYRIGHT for details.

    Home page:  http://www.tecgraf.puc-rio.br/lua/
                http://csg.uwaterloo.ca/~lhf/lua/
    In Brazil:  ftp://ftp.tecgraf.puc-rio.br/pub/lua/
    In Canada:  ftp://csg.uwaterloo.ca/pub/lhf/lua/
    In the US:  ftp://ftp.freesoftware.com/pub/languages/lua/
    In Germany: ftp://ftp.uni-trier.de/pub/languages/lua/
    In Germany: ftp://ftp.gwdg.de/pub/languages/lua/
    In Greece:  ftp://ftp.ntua.gr/pub/lang/lua/
    In Japan:   ftp://ftp.u-aizu.ac.jp/pub/lang/lua/
    In Denmark: ftp://ftp.ucore.com/lua/dist

* Installation
  ------------
  See INSTALL.

* Contacting the authors
  ----------------------
  Lua was designed and implemented by Waldemar Celes, Roberto Ierusalimschy
  and Luiz Henrique de Figueiredo.
  They can be contacted by email at lua@tecgraf.puc-rio.br. 

  Send your comments, questions, and bug reports to lua@tecgraf.puc-rio.br.
  For reporting bugs, try also the mailing list: lua-l@tecgraf.puc-rio.br.
  For more information about this list, including instructions on how to
  subscribe, see http://www.tecgraf.puc-rio.br/lua/lua-l.html .

  Lua is developed at TeCGraf, the Computer Graphics Technology Group
  of PUC-Rio (the Pontifical Catholic University of Rio de Janeiro in Brazil). 
  TeCGraf is a laboratory of the Department of Computer Science.
  Dozens of industrial products developed by TeCGraf use Lua.

(end of README)