Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    use MyModule1;
    
    print testme();
    
  2. or download this
    package MyPackage;
    
    ...
        return "Test Module 1";
    }
    1;