Help for this page

Select Code to Download


  1. or download this
    package My::Example;
    
    sub new { return bless {}; }
    
    sub GetLinks { # ... }
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    my $example = My::Example->new();
    my $links = $example->GetLinks();