lua-users home
lua-l archive

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


> Lua 5 is a lot different from Lua 4. I missed writeto() and appendto(),
> [...]

The distribution comes with a file (etc/compat.lua) that implements
the old functionallity on top of the new functions.


> Now all I need to figure out is how to return the flow to stdout, 

    io.output(io.stdout)

-- Roberto