Help for this page
$code = sub { wantarray ? ('foot','ball') : 'soccer' }; ... print $x; print @x;
$code = sub { wantarray ? ("foot","ball") : "soccer" }; ... print $x; print @x;