lua-users home
lua-l archive

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


> Notice that I've tried using :
> 
> outfile:write(string.format("%c", 0))
> 
> and it outputs nothing. But with != 0, it works.

`string.format' does not work with strings with embedded zeros. (We
will add that to the manual...)

-- Roberto