Help for this page

Select Code to Download


  1. or download this
    # file: MyDir/MyTest.pm
    package MyDir::Foo;
    ...
    }
    
    1;
    
  2. or download this
    use strict;
    use MyDir::MyTest;
    ...
    
    my $bar = MyDir::Bar->new();
    $bar->bar();