Help for this page

Select Code to Download


  1. or download this
    #file One.pm
    package One;
    BEGIN { print "Begin One\n" }
    sub import { print "Import One\n" }
    1
    
  2. or download this
    #file Two.pm
    package Two;
    use One;
    1
    
  3. or download this
    use One;
    use Two;