Re: [Q] print function and stdout redirection?
[
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: 2007年10月16日 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.