Search code examples
rakuautoflushrakudo-star

perl6/rakudo: How could I disable autoflush?


I tried this, but it didn't work:

$*OUT.autoflush( 0 );

Solution

  • $*OUT.autoflush = False should disable it, and it runs without error, but it seems that parrot's IO still flushes automatically. So there currently doesn't seem to be an easy way.