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