Help for this page

Select Code to Download


  1. or download this
    package EXAMPLE;
    use strict;
    ...
    sub my_example_method{
            print "hi, I am here!";
    }
    
  2. or download this
    #!/usr/bin/perl
    use lib '/path/to/whateveryoulike';
    use EXAMPLE;
    
    $my_dirt_sneaky_object_reference->my_example_method;