Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl6
    
    ...
       } elsif $timeout { say "Timeout"; last }
    }
    say "Finished";
    
  2. or download this
    react {
        whenever $c -> $item { say qq|Got: "$item"| }
        whenever Promise.in(5) { say "Timeout"; done }
    }