Help for this page
my @ary = ( 1, 6, 0, 2, 3 ); while ( my $result = shift( @ary ) ) { print "$result\n"; }
1 6