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


in reply to Trouble getting size of list returned from sub

In perldata, you can see : If you evaluate an array in scalar context, it returns the length of the array. (Note that this is not true of lists, which return the last value....

Your sub bad() returns the value of the last expression evaluated (see return). The last and unique expression in bad() is a list :

use strict; sub good { my @a = qw/zero one two/; @a } sub bad { qw/foo bar baz/ } print scalar good(), "\t<== what I want"; print "\n"; print scalar bad(), "\t<== not"; print "\n"; print scalar ( () = bad()), "\t<== list context, then scalar()"; print "\n"; print "baz is ".bad(); print "\n"; print "1+2 = ".( () = bad()); print "\n"; __END__ Output: 3 <== what I want baz <== not 3 <== list context, then scalar() baz is baz 1+2 = 3
English is not my mother tongue.
Les tongues de ma mère sont "made in France".