Help for this page

Select Code to Download


  1. or download this
    package Parenthise;
    
    ...
    }                       
    
    1;
    
  2. or download this
                  
    package SomePackage;    
                
    ...
    Parenthise::parenthise(__PACKAGE__, 'value');
    
    1;
    
  3. or download this
      
    use Somepackage;
    my $thing = Somepackage->new();
    $thing->value('bar');
    $thing->value eq '(bar)';