Help for this page

Select Code to Download


  1. or download this
        package Some_Class;
        our($CData1, $CData2);
    ...
                CData2  => \$CData2,
            } => (ref $obclass || $obclass);
        }
    
  2. or download this
    sub new {
      my $class = shift;
      return bless my $self = {}, (ref $class || $class);
    }