Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
correct say.t, and add a test for .print
  • Loading branch information
moritz committed Oct 2, 2011
1 parent 23dd35a commit 9e5e20c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions S16-io/say.t
Expand Up @@ -4,7 +4,7 @@ use v6;

# doesn't use Test.pm and plan() intentionally

say "1..6";
say "1..7";

# Tests for say
{
Expand All @@ -15,7 +15,7 @@ say "1..6";
say "o", "k 2 - say with multiple parame", "ters (1)";

my @array = ("o", "k 3 - say with multiple parameters (2)");
say @array;
say |@array;
}

{
Expand All @@ -29,5 +29,6 @@ say "1..6";

$*OUT.say('ok 6 - $*OUT.say(...)');

'ok 7 - Mu.print'.print;

# vim: ft=perl6

0 comments on commit 9e5e20c

Please sign in to comment.