Help for this page
use strict; use warnings; ... my @x =('a','b', foo(), 'c'); print "\@x=(@x)\n";
wantarray? 1 @x=(a b 1 2 3 c)