Help for this page

Select Code to Download


  1. or download this
    # TryMe.pm
    package TryMe;
    ...
        $return_value;
    }
    1;
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my $tester = TryMe->new();
    
    print $tester->do_something( "nice" ), "\n";