meonkeys has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; my @list = ( { name => "cm_lg_port", description => "Full Page", dimensions => "8.5 x 11 inches", layout => "portrait", weight => "251k", }, { name => "cm_sm_port", description => "Half Page", dimensions => "5.5 x 8.5 inches", layout => "portrait", weight => "217k", }, { name => "cm_sm_land", description => "Half Page", dimensions => "8.5 x 5.5 inches", layout => "landscape", weight => "207k", } ); my $arrayref = \@list; foreach my $file (@$arrayref) { print $file->{name}; print $file->{description}; print $file->{dimensions}; print $file->{layout}; print $file->{weight}; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Is it worth the reference?
by japhy (Canon) on Sep 20, 2000 at 01:15 UTC | |
|
Re: Is it worth the reference?
by chromatic (Archbishop) on Sep 20, 2000 at 02:45 UTC | |
by BlaisePascal (Monk) on Sep 20, 2000 at 06:33 UTC | |
|
Re: Is it worth the reference?
by TGI (Parson) on Sep 20, 2000 at 01:24 UTC |