RE: [Perl-unix-users] not understanding how to bless or should I even in this case

2003-05-30 Thread Vema, Venkata
users] not understanding how to bless or should I even in this case Markham, Richard wrote: > Kester, I used your suggestions. The following code: > ~ > #! /usr/local/bin/perl What on earth do you have against a 'use strict;' placed righ

Re: [Perl-unix-users] not understanding how to bless or should I even in this case

2003-05-30 Thread $Bill Luebkert
Markham, Richard wrote: > Kester, I used your suggestions. The following code: > ~ > #! /usr/local/bin/perl What on earth do you have against a 'use strict;' placed right here in your code ? Having one would have produced: Global symbol "%people" requir

RE: [Perl-unix-users] not understanding how to bless or should I even in this case

2003-05-30 Thread Markham, Richard
Title: RE: [Perl-unix-users] not understanding how to bless or should I even in this case Kester, I used your suggestions. The following code: ~ #! /usr/local/bin/perl use Data::Dumper; my @PERSON; push @PERSON,   new_person(name   => &

RE: [Perl-unix-users] not understanding how to bless or should I even in this case

2003-05-29 Thread Brett Marlowe
t;, "1" ]. Secondarily you'll now have to use another grep _expression_ to loop over each of the values in the nums array. I'd be looking at changing my data structure at this point :-) Brett <>--- Begin Message --- Title: RE: [Perl-unix-users] not understanding how to b

RE: [Perl-unix-users] not understanding how to bless or should I even in this case

2003-05-29 Thread Markham, Richard
Title: RE: [Perl-unix-users] not understanding how to bless or should I even in this case ok no responses. can anyone tell me how I could get each value for nums so I can run statements against their values? for starters i tried  foreach $people (@PERSON) {   print "$people{nums}"