in reply to Pointer to a structure in Perl

Sounds like you're looking for Perl references. Check out the perlref and perlreftut pages using the perldoc command. As a quick example:
my @array = qw( hello world ); my $array_ref = \@array; print $array[0], "\n"; # prints hello print $array_ref->[0], "\n"; # prints hello

Replies are listed 'Best First'.
Re^2: Pointer to a structure in Perl
by AnomalousMonk (Archbishop) on Apr 01, 2013 at 21:50 UTC

    ... and then check out perldsc and perllol to get the structure part.