Help for this page

Select Code to Download


  1. or download this
    sub foo {
        my ($self,$date,$message,$opt_args) = @_;
        .....
        return $sucess;
    }
    
  2. or download this
    sub new {
        my ($class,%args) = @_;
    ...
        my $foobar = $args{foo} . $args{bar}; # Whatever
        ...
    }