Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove .join from examples
  • Loading branch information
perlpilot committed Dec 10, 2010
1 parent 763904e commit 01f44e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions misc/perl6advent-2010/articles/feed.pod
Expand Up @@ -52,8 +52,8 @@ feed operators:

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

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

0 comments on commit 01f44e8

Please sign in to comment.