Help for this page

Select Code to Download


  1. or download this
    my $ob1 = foo->new('alpha');
    my $ob2 = foo->new('beta');
    
  2. or download this
    my $ob1 = alpha->new();
    my $ob2 = beta->new();
    
  3. or download this
    use strict;
    use warnings;
    ...
            return "Beta\n";
        }
    }