it's a way to dereference a hash-reference. just like you might see @$array etc... here's roughly how this works: my $href = \%hash; # create reference my %new_hash = %$href #dereference. if you'd like to read more about it, check out http://japh.nu/index.cgi?base=tuts which has among others a tutorial on references. regards, Jos Boumans > > What does %$messages mean? > > Thanks > John Sands > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
- what does %$variable mean? John Sands
- Re: what does %$variable mean? Jos I. Boumans
- Re: what does %$variable mean? register