Help for this page

Select Code to Download


  1. or download this
    package Person;
    
    ...
             " and I'm ", 
             $self->AGE, "!\n";
    }
    
  2. or download this
    package main;
    
    ...
    
    # this doesn't
    $person->('TOES', 12);
    
  3. or download this
    Hello, I'm John Doe and I'm 23!
    Hello, I'm John Doe and I'm 24!
    Method 'TOES' unknown for class Person at Person.pl line 59