Help for this page

Select Code to Download


  1. or download this
    package one;
    sub new {
    ...
        return($self);
    }
    1;
    
  2. or download this
    #!/usr/bin/perl
    use Data::Dumper;
    ...
    
    my $x=one->new();
    print(Dumper($x));
    
  3. or download this
    $VAR1 = bless( {
                     'test' => 'test'
                   }, 'one' );