Help for this page

Select Code to Download


  1. or download this
    package SomeClass;
    use Scalar::Util;
    ...
    
    SomeClass->init( 456);
    print SomeClass->some_field, "\n";
    
  2. or download this
    sub new {
        my $class = shift;
        $class->init( @_);
    }