http://www.perlmonks.org?node_id=72676


in reply to Re: NEWBIE Brain Teaser #2, by nysus
in thread NEWBIE Brain Teaser #2, by nysus

SPOILER ALERT!

From my understanding, the existing @_ will be passed by default when you use &subroutine instead. Is there a change in 5.6?

Edit: chipmunk 2001-04-16

  • Comment on Re: Re: NEWBIE Brain Teaser #2, by nysus

Replies are listed 'Best First'.
SPOILER AHOY!
by MrScrooge (Novice) on Apr 15, 2001 at 23:36 UTC

    You are correct that @_ will be passed to a subroutine if you call it without using the parenthesis. This is true of both 5.6 and 5.005 at least.

    However the result of the attempted assignment of a list to $_ differ depending on Perl version, and this DOES affect the output you will see.

      However the result of the attempted assignment of a list to $_ differ depending on Perl version, and this DOES affect the output you will see.
      Perl never attempts to assign a list to $_. Ever.

      Understanding is demonstrated when correct phrasing is used. {grin}

      -- Randal L. Schwartz, Perl hacker

Re: Re: Re: NEWBIE Brain Teaser #2, by nysus
by merlyn (Sage) on Apr 15, 2001 at 21:08 UTC