Help for this page

Select Code to Download


  1. or download this
    package Example::Module;
    use strict;
    ...
      print "Hi '$v1' and '$v2'\n";
    }
    1;
    
  2. or download this
    use strict;
    use Example::Module;
    ...
    };
    
    $em->foo("one", "two");