Help for this page
sub myfunc { my $arg = @_ ? $_[0] : $_; ... ... } }
sub myfunc { for (@_ ? $_[0] : $_) { ... } }