Help for this page

Select Code to Download


  1. or download this
    sub new { 
        my ($class,$args_for) = @_; 
    ...
        $self->_initialize($args_for); 
        return $self; 
    }
    
  2. or download this
    # this will fail, because 'a' is unquoted
    
    ...
    # this won't break things
    
    my %hash = (a => 1);