Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    foo1();
    foo2();
    print "All done.\n";
    
  2. or download this
    # first include file
    sub foo1
    ...
    }
    
    1;
    
  3. or download this
    # second include file
    sub foo2
    ...
    }
    
    1;