Help for this page

Select Code to Download


  1. or download this
    #!d:\perl\bin\perl.exe 
    
    ...
    my $obj = Hello->new( sample_data => 'hello world',
                                 more_data   => 'blah blah blah' );
    $obj->sample_method();
    
  2. or download this
    #!d:\perl\bin\perl.exe 
    
    ...
        print $self->{sample_data};
    }
    1;