> 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