Skip to content

Commit 01f44e8

Browse files
committed
remove .join from examples
1 parent 763904e commit 01f44e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

misc/perl6advent-2010/articles/feed.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ feed operators:
5252

5353
my @random-nums = (1..100).pick(*);
5454
my @odds-squared <== sort <== map { $_ ** 2 } <== grep { $_ % 2 } <== @random-nums;
55-
say @odds-squared.join(" ");
55+
say ~@odds-squared;
5656

5757
my @rakudo-people = <scott patrick carl moritz jonathan jerry stephen>;
5858
@rakudo-people ==> grep { /at/ } ==> map { .ucfirst } ==> my @who-its-at;
59-
say @who-its-at.join(" ");
59+
say ~@who-its-at;

0 commit comments

Comments
 (0)