Hi all, here's my next question :)

What's the difference between these two?:

  %actions = (
    login => \&welcome,
    authent => \&checkpass,
  );
and
  %actions = (
    "login" => \&welcome,
    "authent" => \&checkpass,
  );

bye
Balazs Pozsar.
-- 



Reply via email to