Help for this page

Select Code to Download


  1. or download this
    package MyModule2; #line 1
    
    ...
       return ($total);
    }
    1;
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    my $amount = 12;
    
    print add_it($amount),"\n";
    
  3. or download this
    sub add_it { 
       my $amount = shift;
    ...
       return ($total);
    }
    1;
    
  4. or download this
    use MyModule;
    
    my $amount = 12;
    
    print add_it($amount),"\n";