Help for this page

Select Code to Download


  1. or download this
    my %phrases = (
     "phrase 1" => {
    ...
     }
     return $qty;
    }
    
  2. or download this
    for my $k (keys %phrases) {
     # update
    ...
     }
     return $qty;
    }
    
  3. or download this
    print "${ \$phrases{'phrase 2'}->{'qtyTotal'}->() }\n";
    
  4. or download this
    package Qty;
    sub new {
    ...
    );
    
    print "${ \$phrases{'phrase 2'}->qtyTotal() }\n";