At 06:09 PM 6/18/01 -0700, Peter Cornelius wrote:
> > At 04:36 PM 6/18/01 -0700, Peter Cornelius wrote:
> > >use Data::Dumper;
> > >
> > >%hash = (
> > > 1 => "I exist...",
> > > 2 => "This is academic",
> > > 3 => "I should be using an array"
> > > );
> > >
> > >pr
> At 04:36 PM 6/18/01 -0700, Peter Cornelius wrote:
> >use Data::Dumper;
> >
> >%hash = (
> > 1 => "I exist...",
> > 2 => "This is academic",
> > 3 => "I should be using an array"
> > );
> >
> >print Dumper \%hash;
> >
> >for $key (keys %hash) {
> > $hash{$k
At 04:36 PM 6/18/01 -0700, Peter Cornelius wrote:
>use Data::Dumper;
>
>%hash = (
> 1 => "I exist...",
> 2 => "This is academic",
> 3 => "I should be using an array"
> );
>
>print Dumper \%hash;
>
>for $key (keys %hash) {
> $hash{$key++}="Redefined";
>