On Tue, Jul 03, 2001 at 06:49:29PM +0200, Pozsar Balazs wrote:

> What's the difference between these two?:
> 
>   %actions = (
>     login => \&welcome,
>     authent => \&checkpass,
>   );
> and
>   %actions = (
>     "login" => \&welcome,
>     "authent" => \&checkpass,
>   );

Redundant punctuation is cluttering the second snippet :-)

The arrow => quotes its LHS.

-- 
Paul Johnson - [EMAIL PROTECTED]
http://www.pjcj.net

Reply via email to