[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Using luac
- From: Tomás Guisasola <tomasguisasola@...>
- Date: Fri, 27 May 2022 21:53:45 -0300
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