Skip to content

Instantly share code, notes, and snippets.

@mlschroe
Created November 15, 2011 16:52
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 mlschroe/1367579 to your computer and use it in GitHub Desktop.
Save mlschroe/1367579 to your computer and use it in GitHub Desktop.
sub foo($x) {
my $z = $x;
if ($x) {
foo(0);
}
for (1) {
say "z = $z";
}
}
foo(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment