Hi Martin, I get the same thing if I start Cog with no special command line, and I think this seems kind of correct to me, as I'm not sure where the output would go when there is no console attached. C:\foo> CogVM.exe test.image If I start Cog with output redirected to a file, then "FileStream stdout" seems to work as expected: C:\foo> CogVM.exe test.image >file Stuff written to "FileStream stdout" now appears in "file". Using cygwin, I can pipe through "cat" to get the output on the terminal: $ ./CogVM.exe test.image | cat Cheers, Martin On Mon, Apr 9, 2012 at 9:01 AM, Martin Dias <tinchodias@gmail.com> wrote:
Hi
In my windows 7, I get an error when trying to write to "FileStream stdout" in both Pharo 1.4 and 1.3 (revisions #14423 and #13320).
To reproduce,
- download: https://ci.lille.inria.fr/pharo/job/Pharo%201.4/373/artifact/Pharo-1.4.zip
- evaluate: FileStream stdout nextPutAll: 'a'.
Is this a known issue? I couldn't find it in issue tracker.
Thanks in advance. MartÃn