Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
note needs to .gist its arguments too, JimmyY++
  • Loading branch information
moritz committed Aug 28, 2015
1 parent 64cbc0d commit 48ecd4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/io_operators.pm
Expand Up @@ -64,7 +64,7 @@ multi sub note(\args) {
multi sub note(**@args is rw) {
my $err := $*ERR;
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,$err.nl);
$err.print($str);
}
Expand Down

0 comments on commit 48ecd4d

Please sign in to comment.