lua-users home
lua-l archive

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


>    I'm testing Lua, and I have a newbie question: Why luac.lua (in test
>directory) output incomplete file?

A bug, sorry. The output file should be written in binary mode. Try this fix:
	f=assert(io.open("luac.out","wb"))
--lhf