Help for this page

Select Code to Download


  1. or download this
    my @got = ExactlyWhatThisReturns(
        $exactly, $what, $it, $is, $based, $on,
    )->@*;
    
  2. or download this
    my @got = @{ 
        ExactlyWhatThisReturns( $exactly, $what, $it, $is, $based, $on ) 
    };
    
  3. or download this
    my( $state, $zip ) = $user->GetAccount()->GetPriorOrder()
             ->GetShippingAddress()->@{ 'state', 'zip' };
    
  4. or download this
    my( $state, $zip ) = @{ 
        $user->GetAccount()->GetPriorOrder()->GetShippingAddress() 
    }{ 'state', 'zip' };