in reply to Array in scalar context.

No, you are not missing anything. In your print statement, perl automatically converts @foo to scalar(@foo) because of the join (.) operator in use.

Replies are listed 'Best First'.
Re: Re: Array in scalar context.
by the_0ne (Pilgrim) on Oct 04, 2003 at 03:52 UTC
    I understand now, thank you all.