C
C.DeRykus
...
When in "random position" in a list, => MAY be confusing. On the
other hand, it may be a tool to attract attention to most important
element(s) of the list.
When used between two "logically connected" parts of the list (as in
$^X, -I => $INC, ...), it is, IMO, very appropriate.
some non-word cautions for the unwary:
perl -wle ' %h =( 12:00 => "lunch")'
syntax error at ... near "12:"
perl -MO=Deparse -wle ' x( area-54 => 'verboten' );'
Unquoted string "area" may clash ...
x('area' - 54, 'verboten');
-e syntax OK