diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ | |||
1 | This is Lua 1.0. It was never publicly released. This code is a snapshot of | ||
2 | the status of Lua on 28 Jul 1993. It is distributed for historical curiosity | ||
3 | to celebrate 10 years of Lua and is hereby placed in the public domain. | ||
4 | |||
5 | There is no documentation, except the test programs. The manual for Lua 1.1 | ||
6 | probably works for this version as well. | ||
7 | |||
8 | The source files for the lexer and parser have been lost: all that is left is | ||
9 | the output of lex and yacc. A grammar can be found inside y_tab.c in yyreds. | ||
10 | |||
11 | The code compiles and runs in RedHat 5.2 with gcc 2.7.2.3. It may not run in | ||
12 | newer systems, because it assumes that stdin and stdout are constants, though | ||
13 | ANSI C does not promise they are. If make fails, try using the fixed modules | ||
14 | provided in the "fixed" directory. To see the differences (which are really | ||
15 | quite minor), do "make diff". | ||
16 | |||
17 | To see Lua 1.0 in action, do "make test". (The last test raises an error on | ||
18 | purpose.) | ||
19 | |||
20 | Enjoy! | ||
21 | |||
22 | -- The Lua team, lua@tecgraf.puc-rio.br | ||