Skip to content

Commit 9e5e20c

Browse files
committed
correct say.t, and add a test for .print
1 parent 23dd35a commit 9e5e20c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

S16-io/say.t

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use v6;
44

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

7-
say "1..6";
7+
say "1..7";
88

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

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

2121
{
@@ -29,5 +29,6 @@ say "1..6";
2929

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

32+
'ok 7 - Mu.print'.print;
3233

3334
# vim: ft=perl6

0 commit comments

Comments
 (0)