Skip to content

Instantly share code, notes, and snippets.

@SqrtNegInf
Last active August 25, 2016 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SqrtNegInf/cfc1bf33d67365ef2bbc512c8a6d0772 to your computer and use it in GitHub Desktop.
Save SqrtNegInf/cfc1bf33d67365ef2bbc512c8a6d0772 to your computer and use it in GitHub Desktop.
say: buffered vs unbuffered output?
say(1);
say 2;
3.say;
my $out = open('test.txt', :w);
$out.say(1);
$out.say: 2;
3.say(:$out);
stdout:
1
2
3
file:
3
1
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment