Related articles |
---|
[2 earlier articles] |
Re: Are Associative Arrays unique to Perl? mzenier@netcom.com (1996-10-24) |
Re: Are Associative Arrays unique to Perl? leichter@smarts.com (Jerry Leichter) (1996-10-24) |
Re: Are Associative Arrays unique to Perl? ok@cs.rmit.edu.au (1996-10-24) |
Re: Are Associative Arrays unique to Perl? hbaker@netcom.com (1996-10-25) |
Re: Are Associative Arrays unique to Perl? phr@netcom.com (1996-10-30) |
Re: Are Associative Arrays unique to Perl? ian@five-d.com (1996-10-30) |
Re: Are Associative Arrays unique to Perl? lhf@csg.uwaterloo.ca (1996-10-30) |
Re: Are Associative Arrays unique to Perl? boffi@rachele.stru.polimi.it (giacomo boffi) (1996-10-30) |
Re: Are Associative Arrays unique to Perl? sitaram@diac.com (1996-11-03) |
Re: Are Associative Arrays unique to Perl? hbaker@netcom.com (1996-11-03) |
Re: Are Associative Arrays unique to Perl? hammen@gothamcity.jsc.nasa.gov (Dave Hammen) (1996-11-05) |
From: | lhf@csg.uwaterloo.ca (Luiz Henrique de Figueiredo) |
Newsgroups: | comp.lang.perl.misc,comp.lang.misc,comp.compilers |
Date: | 30 Oct 1996 13:20:12 -0500 |
Organization: | University of Waterloo |
References: | <5437ev$30u@shell1.aimnet.com> <545mqn$qul@picasso.op.net> 96-10-099 96-10-109 |
Keywords: | design, storage |
Associate arrays are the basic data structures in Lua (see below).
--lhf
* What is Lua?
Lua is a simple, yet powerful, language for extending applications.
Lua has been developed by TeCGraf, the Computer Graphics Technology Group
of PUC-Rio, the Pontifical Catholic University of Rio de Janeiro, Brazil.
Dozens of industrial products developed by TeCGraf use Lua.
* Some features of Lua
+ a simple, pascal-like, syntax
+ powerful data description constructs (e.g., associative arrays)
+ user-controlled type constructors
+ fallbacks for extending the language in unconventional ways (e.g.,
inheritance, overloading)
+ garbage collection
+ Lua programs are compiled into bytecodes, which are then interpreted
+ portable, written in ANSI C (runs in Unix, DOS, Windows, Mac, Cray, ...)
* Availability
The latest version of Lua is always available at the following locations:
In Brazil: ftp://ftp.icad.puc-rio.br/pub/lua/lua.tar.gz
In Canada: ftp://csg.uwaterloo.ca/pub/lhf/lua/lua.tar.gz
In Greece: ftp://ftp.ntua.gr/pub/lang/lua/lua.tar.gz
Home page: http://www.inf.puc-rio.br/~roberto/lua.html
The current version is 2.4.
* Legal matters
Lua is 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 lua@icad.puc-rio.br.
Please send us email if you download Lua so that we can know how far it goes.
--
Luiz Henrique de Figueiredo http://csg.uwaterloo.ca/~lhf/
Computer Systems Group, Department of Computer Science, University of Waterloo
Waterloo, Ontario, Canada N2L 3G1 (519) 888-4567-1-5517, fax (519) 746-5422
--
Return to the
comp.compilers page.
Search the
comp.compilers archives again.