summaryrefslogtreecommitdiff
path: root/doc/luac.txt
diff options
context:
space:
mode:
authorLua Team <team@lua.org>1996-05-14 12:00:00 +0000
committerrepogen <>1996-05-14 12:00:00 +0000
commit721542976ebc89f2f8d17d19be7e4426570b69be (patch)
tree0c79a45c63aa89d6e4b8ac80931e46d74a72f8cb /doc/luac.txt
parent71754d2f6423fb9b6e87658e58bafc5470d53f65 (diff)
downloadlua-github-2.4.tar.gz
Lua 2.42.4
Diffstat (limited to 'doc/luac.txt')
-rw-r--r--doc/luac.txt66
1 files changed, 66 insertions, 0 deletions
diff --git a/doc/luac.txt b/doc/luac.txt
new file mode 100644
index 00000000..d1989530
--- /dev/null
+++ b/doc/luac.txt
@@ -0,0 +1,66 @@
+
+
+
+LUAC(1) User Commands LUAC(1)
+
+
+
+NAME
+ luac - Lua compiler
+
+SYNOPSIS
+ luac [ -dlpv ] [ -o outputfile ] sourcefile ...
+
+DESCRIPTION
+ luac is the Lua compiler. It translates programs written in
+ the Lua programming language into binary files that can be
+ loaded and executed with lua_dofile in C or dofile in Lua.
+
+ luac produces a single output file containing the bytecode
+ for all named source files. By default, the output file is
+ named luac.out, but you can change this with the -o option.
+
+ You can use "-" to indicate stdin as a source file.
+
+OPTIONS
+ -d turns debugging on.
+
+ -l produces a listing of the compiled bytecode for
+ Lua's virtual machine.
+
+ -p parses sources files but does not generate any
+ output file.
+
+ -v prints version information.
+
+ -o outputfile
+ Name the output file output, instead of the
+ default luac.out. The output file cannot be a
+ source file.
+
+FILES
+ luac.out default output file
+
+SEE ALSO
+ lua(1)
+
+ Reference Manual of the Programming Language Lua
+
+DIAGNOSTICS
+ Error messages should be self explanatory.
+
+BUGS
+ Inherits any bugs from Lua, but Lua has no bugs...
+
+AUTHORS
+ W. Celes, R. Ierusalimschy & L. H. de Figueiredo
+ (lua@icad.puc-rio.br)
+
+
+
+
+
+Formatted 96/03/29 12 March 1996 1
+
+
+