in reply to (tye)Re: our/my inconsistency.
in thread our/my inconsistency.
This will print one.use strict; use warnings; my %hash = (one => "one", two => "two", three => "three" ); print "$hash{one}\n"; test(); exit; sub test { for (keys %main::hash) { print "$_ $main::hash{$_}\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)Re2: our/my inconsistency.
by tye (Sage) on Jan 03, 2001 at 00:03 UTC | |
|
Re: Re: (tye)Re: our/my inconsistency.
by danger (Priest) on Jan 03, 2001 at 00:00 UTC |