Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
say must use .gist, not .Str
this way, say(Int) prints "(Int)\n" again
  • Loading branch information
moritz committed Aug 28, 2015
1 parent 087a6c5 commit 64cbc0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/io_operators.pm
Expand Up @@ -35,7 +35,7 @@ multi sub say(Mu:D \args) {
multi sub say(**@args is rw) {
my $out := $*OUT;
my str $str;
$str = nqp::concat($str,nqp::unbox_s(.Str)) for @args;
$str = nqp::concat($str,nqp::unbox_s(.gist)) for @args;
$str = nqp::concat($str,$out.nl);
$out.print($str);
}
Expand Down

0 comments on commit 64cbc0d

Please sign in to comment.