Help for this page

Select Code to Download


  1. or download this
    # In script file named: mycode.plx
    use strict;
    ...
    use MyPackage;
    
    # Now the rest of your code.
    
  2. or download this
    # In MyPackage.pm 
    package MyPackage;
    ...
    {
      print("My some function");
    }