Last active
December 17, 2015 22:18
-
-
Save notbenh/5680495 to your computer and use it in GitHub Desktop.
Why am I not getting the expected output?
This file contains 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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
my @a = (1,2,3,4,5); | |
foreach my $x (@a){ | |
print "first FOREACH: $x and the array is [@a] \n"; | |
} | |
while( my $x = shift @a ){ | |
print "WHILE: $x and the array is [@a]\n"; | |
} | |
foreach my $x (@a){ | |
print "second FOREACH: $x and the array is [@a]\n"; | |
} | |
print "all done\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment