$a= ( test() ); print $a; #> 9 sub test { return (1,2) if wantarray; return 9; }