Skip to content

Commit

Permalink
Make "note" say "Noted"
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Aug 4, 2014
1 parent 1070a89 commit 0bf81fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/IO.pm
Expand Up @@ -33,6 +33,9 @@ multi sub say(|) {
}

proto sub note(|) { * }
multi sub note() {
$*ERR.print("Noted\n");
}
multi sub note(Str:D \x) {
my $err := $*ERR;
$err.print(x);
Expand Down

0 comments on commit 0bf81fa

Please sign in to comment.