Help for this page

Select Code to Download


  1. or download this
    my $obj = new PKG;
    $obj->safe_sub({'foo' => 'bar'}, 'cool');
    
    ...
    
    package PKG;
    &safe_sub({'foo' => 'bar'}, 'cool');
    
  2. or download this
    package PKG;
    
    ...
    sub new {
        bless {}, shift;
    }