On 11-02-23 07:53 AM, HACKER Nora wrote:
my @personen = @$personen; foreach my $person ( @personen ) { print "<p>Dereferencing: @$person\n</p>\n"; }
Use Data::Dumper to inspect your data structures: use Data::Dumper; for my $person ( @$personen ){ print "Debug: $person = ", Dumper $person; } -- Just my 0.00000002 million dollars worth, Shawn Confusion is the first step of understanding. Programming is as much about organization and communication as it is about coding. The secret to great software: Fail early & often. Eliminate software piracy: use only FLOSS. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/