Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Created July 3, 2012 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoelzro/3040496 to your computer and use it in GitHub Desktop.
Save hoelzro/3040496 to your computer and use it in GitHub Desktop.
Infinite Recursion in Perl6
use v6;
my $counter = 0;
sub foo {
say $counter if $counter > 99_000;
$counter++;
foo;
}
foo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment