Help for this page

Select Code to Download


  1. or download this
    #FileOne.pl
    package ProgramSpread;
    ...
        }
    return 1;
    END{}
    
  2. or download this
    #FileTwo.pl
    package ProgramSpread;  #The same package above
    ...
                }
    return 1;
    END{}
    
  3. or download this
    #using the package
    require "FileOne.pl";   #File names containing the package
    ...
    
    ProgramSpread::subroutine1();
    ProgramSpread::subroutine2();
    
  4. or download this