Help for this page

Select Code to Download


  1. or download this
    -command => [\&Account_Setup, $acct]
    
  2. or download this
    -command => [\&Account_Setup, \$acct]
    
  3. or download this
    sub Account_Setup {
        my $acct_type = ${shift()};
        print "Account Type: $acct_type\n";
    }