On 2005-05-01, Jason Lunz <[EMAIL PROTECTED]> wrote: > Oddly enough, even though both io.stdout and io.stderr work (which can > be verified with their :write() methods), print doesn't work. The only > thing the Lua reference manual has to say about it is that print goes to > stdout. That's obviously not the whole story.
Well, IIRC, stdout is usually block-buffered when not writing to a tty, while stderr is line-buffered. Don't know why stdout:write would print stuff immediately then, though... -- Tuomo
