in reply to Re: What does [=;] mean
in thread What does [=;] mean
Note that the keys are not necessarily printed out in the same order. For a first run, I get:my %spl = ('GFG', '1', 'GEEKS', '2', 'PROGEEK', '3'); foreach my $key (keys %spl) { print "$key:$spl{$key}\n"; }
A second run yields:GEEKS:2 GFG:1 PROGEEK:3
and a third run produces:PROGEEK:3 GEEKS:2 GFG:1
But the key-value association remains unchanged.GFG:1 GEEKS:2 PROGEEK:3
|
|---|