in reply to What's the exact rule about hash/pound?
Comments are anything starting with an unquoted #, or a # character that's not part of a term.
%# = ( foo => 'bar', baz => 'buz' ); print keys( %# ), "\n";
Unfortunately, you can't access an element of that hash directly because it looks like you want the last element of an array. Bug? Maybe, but I sure don't want to fix it.
Update: Oh yeah, but yuck.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: What's the exact rule about hash/pound?
by IlyaM (Parson) on Feb 27, 2003 at 07:57 UTC | |
|
Re: Re: What's the exact rule about hash/pound?
by ihb (Deacon) on Feb 27, 2003 at 21:05 UTC |