Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    my $obj2 = Test2->new();
    $obj2->do_this();
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    Test1->import(qw(do_this));
    
    do_this("some string");