Help for this page

Select Code to Download


  1. or download this
    Test->new(); # Calls Obj::new
    Test::new(); # Fails
    $Test::$foo; # Fails for the same reason that Test::new did
    
  2. or download this
    sub test {
        my $self = shift;
    ...
        }
        print $Name;
    }