Skip to content

Commit

Permalink
Merge pull request #8 from AlexDaniel/master
Browse files Browse the repository at this point in the history
Adapt code to the latest rakudo
  • Loading branch information
marcoonroad committed Oct 22, 2017
2 parents e584dd6 + c02f379 commit 081a5e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/transfer.t
Expand Up @@ -20,7 +20,7 @@ sub transfer (&generator) {
# }

# pure 'begin' function
multi begin (( )) { } # work around ? ...
multi begin (Bool $) { }
multi begin (&generator) { begin generator( ) }

my $first;
Expand Down Expand Up @@ -52,7 +52,7 @@ $first = ping "Ping!";
$second = wtf;
$third = pong "Pong!";

ok $first and $second and $third;
ok $first && $second && $third;

begin $first; # begin the cycle with this generator

Expand All @@ -65,4 +65,4 @@ begin $first; # begin the cycle with this generator
# }
# }

# end of test
# end of test

0 comments on commit 081a5e9

Please sign in to comment.