New issue 57 by quentin....@polytechnique.org: REPL not flushed enough
http://code.google.com/p/teyjus/issues/detail?id=57
The output of the read-eval-print loop is only flushed when a newline is
printed:
******
[toplevel] ?- print "this".
yes
[toplevel] ?- print " is".
yes
[toplevel] ?- print "\nnot printed".
this is
yes
[toplevel] ?-
******
(version 2.0-b2). It should at leat be flushed before the answer "yes" is
given.