Help for this page

Select Code to Download


  1. or download this
    my $foo = Foo->new(autothis => 1, delimthat => '::');
    $foo->printme('text', align => 'vertical', font => 'Arial');
    ...
       my ($self, $text, %args) = @_;
       ...
    };
    
  2. or download this
    my $foo = Foo->new( {autothis => 1, delimthat => '::'} );
    $foo->printme('text', {align => 'vertical', font => 'Arial'});
    ...
       my ($self, $text, $args) = @_;
       ...
    };