Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
repare bitrot in examples
  • Loading branch information
lichtkind committed Dec 16, 2015
1 parent da7c5e0 commit 4cc23d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/appendix-e-exciting.txt
Expand Up @@ -104,7 +104,7 @@ Powerful for loops
for (my $i=15; $i>1; $i-2) {...} for 15,*-2...1 -> $i {...}
for my $key (keys %hash) { for %hash.kv -> $key, $value {
print "$key => $hash{$key}\n"; ... say "$key => $value"; ...
for my $i (0..min($#a,$#b,$#c)) { for zip(@a; @b; @c) -> $a, $b, $c {...}
for my $i (0..min($#a,$#b,$#c)) { for zip(@a, @b, @c) -> ($a, $b, $c) {...}
my $a = $a[$i];
my $b = $b[$i];
my $c = $c[$i]; ...
Expand Down

0 comments on commit 4cc23d5

Please sign in to comment.