You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
233 B
Perl

#!/usr/bin/perl -w
@array = (1,2,3,4,5,6,7,8,9);
print "Before: @array.\n";
mod_array( \@array );
print "After: @array.\n";
sub mod_array {
my( $arrayref ) = $_[0];
@$arrayref = reverse( @$arrayref );
}