Created
September 29, 2016 01:08
-
-
Save petdance/825f08a0105a52166bee5f387430b435 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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