Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    my $test = Test->new('steve', '/home/', 'perl');
    
    print Dumper $test;
    
  2. or download this
    sub new {
        my $obj = bless {}, shift;
    ...
    
        return $obj;
    }