- or download this
myfunc(
return => $query->param_fetch("return"),
authors => $query->param_fetch("authors")
);
- or download this
myfunc(
map { $_ => $query->param_fetch($_) }
...
myfunc(
map { $_ => $query->param_fetch($_) } $query->param()
)
- or download this
$sv= \sub_returning_scalar();
$av= [sub_returning_list()];
$hv= {sub_returning_hash()};