in reply to Re: List context, expression precedence, and ()
in thread List context, expression precedence, and ()
I found japhy's article about scalar/list context, and it was real eye-opener, when I learned that
As japhy explains:sub A { return ('a', 'b', 'c'); } $a = A(); # $a gets value 'c' ($b) = A(); # $b gets value 'a'
japhy: ++ for you!
pmas
To make errors is human. But to make million errors per second, you need a computer.
|
|---|