Help for this page

Select Code to Download


  1. or download this
    bless {foo => 'bar',
                 options => {anoption      => 1,
                                         anotheroption => 'foo',
                                         option3 => 'barbar'},
                 bar => 'maz'}, $class;
    
  2. or download this
    sub option {
        my $self = shift;
        if (scalar @_ == 1) {
    ...
            $self->{options}->{$key} = $value;
            }
    }