Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove trailing whitespace
  • Loading branch information
coke committed Feb 23, 2017
1 parent 7ac8ab1 commit 4576bd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/haskell-to-p6.pod6
Expand Up @@ -381,10 +381,10 @@ And now in Perl6 :
=begin code
# using `if` and `for`
my @evens = ($_ if $_ %% 2 for ^100);
# using gather/take to build a Seq
my $evens = gather for ^100 { take $_ if $_ %% 2 };
# using gather/take to build an Array
my @evens = gather for ^100 { take $_ if $_ %% 2 };
=end code
Expand Down

0 comments on commit 4576bd8

Please sign in to comment.