#!perl6 use v6; my $message = "\nHello!\n\nSleep\nTest\n\n"; my @a = $message.split( '' ); for @a { sleep 0.3; .print; }
Does perl6 include "autoflush" by default. With perl5 without the inclusion of "outflush" I do not get this behavior.
source share