Perl Programming
Referencing Data
References indirectly refer to other data
References are like pointers, but done right
Backslash operator creates a reference
References are scalars
my @fruit = qw(apple banana cherry); my $fruitref = \@fruit;
Previous
http://www.mit.edu/iap/perl/
Next