Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    package A;
    ...
      
      
    return 1;
    
  2. or download this
    #!/usr/bin/perl
    package B;
    ...
      
      
    return 1;
    
  3. or download this
    #!/usr/bin/perl
      
    ...
    my $b = new B();
      
    $b->hello();
    
  4. or download this
    hello in A
    hello in B
    DESTROY in B