lua-users home
lua-l archive

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


>> Is there some kind of easy install process for newcomers?

Download this:

http://luaforge.net/frs/download.php/1420/lua5_1_Win32_bin.tar.gz

Unpack it (four files, you need only two, namely lua5.1.*exe/dll) and
put it where you want, e.g. C:\program files\lua51\

Then call the interpreter and act in interactive mode:

     C:\program files\lua51\lua5.1.exe

Or call it and let it execute your scriptfile:

     C:\program files\lua51\lua5.1.exe YOURFILE.lua

Call it from the DOS-box to catch the output.
Even better: use a syntax-highlighting editor which
lets you define a run-command for the edited script.

I currently use TextPad and have defined ctrl+6 to
run Luascripts. Due to some annoying shortcomings of
TextPad I plan to move to WScite, which even has Lua
built in.
Also the editor Zeus is provided with a build-in
Lua-interpreter.

Have fun!
Christof Schardt