lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi Duke

> [quote]
> You can compile the program into Lua's bytecode by executing
> following on your shell:
>
> $ luac bottles_of_matte.lua -o bottles_of_matte.luac
> [/quote]
>
> It chokes on the `-o' option!

Take a look at luac usage:

$ luac
luac: no input files given
usage: luac [options] [filenames]
[skip]

Please, try:

$ luac -o bottles_of_matte.luac bottles_of_matte.lua

Regards,
Tomás