Help for this page

Select Code to Download


  1. or download this
    return (%dat);
    return ('user' => "ironcom", 'password' => "password");
    --
    %dat = retrieve->gather();
    
  2. or download this
    return \%dat;
    --
    %dat = %{retrieve->gather()}; print $dat{'user'};
    $ref = retrieve->gather(); print $ref->{'user'};