Help for this page

Select Code to Download


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