Skip to content

Instantly share code, notes, and snippets.

@petdance
Created September 29, 2016 01:08
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 petdance/825f08a0105a52166bee5f387430b435 to your computer and use it in GitHub Desktop.
Save petdance/825f08a0105a52166bee5f387430b435 to your computer and use it in GitHub Desktop.
(blead) clifford:~/perl $ cat foo.pl
my $i = 14;
sub announce {
print "i=$i\n";
}
for $i (1..3) {
announce();
}
(blead) clifford:~/perl $ perl foo.pl
i=14
i=14
i=14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment