diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2015-10-09 10:11:46 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2015-10-09 10:11:46 -0500 |
commit | dcd9093d6467166a2946008c55f5e0582a15e20c (patch) | |
tree | d0df5a6fb5c4e321333f86d4f27af881e66cf57d | |
parent | 10ac3c9eb73f3def5de76d1383f86d4423e0b393 (diff) | |
parent | 4b74a7a76d5840cee8f713605347a6cad245d4bb (diff) |
Merge pull request #1404 from tecknicaltom/master
[perl6] fix the output of ff example
-rw-r--r-- | perl6.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index 2b45f661..43327edb 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -1429,7 +1429,7 @@ for <well met young hero we shall meet later> { # A flip-flop can change state as many times as needed: for <test start print it stop not printing start print again stop not anymore> { .say if $_ eq 'start' ^ff^ $_ eq 'stop'; # exclude both "start" and "stop", - #=> "print this printing again" + #=> "print it print again" } # you might also use a Whatever Star, |