Help for this page

Select Code to Download


  1. or download this
    sub account_over_limit {
        my ($account, $balance) = @_;
        return exists $LIMITED_ACCOUNTS{$account} && $balance > $LIMIT;
    }
    
  2. or download this
    BEGIN {
       my $var;
    ...
         $var;
       }
    }