Guest User

Untitled

a guest
Nov 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. use v6;
  2.  
  3. my $counter = 0;
  4.  
  5. sub foo {
  6. say $counter if $counter > 99_000;
  7. $counter++;
  8. foo;
  9. }
  10.  
  11. foo;
Add Comment
Please, Sign In to add comment