in reply to Re: Concatnate long statement
in thread Concatnate long statement

my %args = shift;

?

Replies are listed 'Best First'.
Re^3: Concatnate long statement
by snopal (Pilgrim) on Jul 04, 2007 at 14:02 UTC

    Ah yes, my freeform entry technique sometimes fails me:

    sub_call(\%args); sub sub_call { my $arg_of = shift; }

    Using a HASHREF makes so much more sense as well.

    Thanks for the nice catch.