[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [Q] print function and stdout redirection?
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 16 Oct 2007 21:29:56 -0200
> local originalPrint = print
> print = function(...)
> io.write(...)
> io.write("\n")
> end
>
> Or something like that?
No, because io.write does not do automatic conversion to string.