Skip to content

Instantly share code, notes, and snippets.

@notbenh
Last active December 17, 2015 22:18
Show Gist options
  • Save notbenh/5680495 to your computer and use it in GitHub Desktop.
Save notbenh/5680495 to your computer and use it in GitHub Desktop.
Why am I not getting the expected output?
#!/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