Help for this page

Select Code to Download


  1. or download this
       $self->param(hash => { funky => 'Brown' });
    
  2. or download this
    sub some_runmode {
       my $self = shift;
       my $hash = $self->param('hash');
       print "this funky var: $hash->{funky}";
    }