Help for this page

Select Code to Download


  1. or download this
    package Name; {
      use Object::InsideOut;
    ...
    }
    
    1;
    
  2. or download this
    package Age; {
      use Object::InsideOut;
    ...
    }
    
    1;
    
  3. or download this
    use Name;
    use Age;
    ...
    }
    
    1;
    
  4. or download this
    #!/usr/bin/perl
    use Person;
    ...
    my $person = Person->new( name => 'Bob', age => 32 );
    print "Person's name is ", $person->name();
    print " and age is ", $person->age(), "\n";