Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings; # Comment out unless 5.6+
    ...
    
    my $bar = Bar->new;
    $bar->frobnitz;
    
  2. or download this
    my $foo = new Foo ( input => { } );
    
  3. or download this
    my $foo = Foo->new( input => { } );
    
  4. or download this
    my $foo = new Foo ( input => { } );
    
  5. or download this
    my $foo = new(Foo('input', {}));