Help for this page

Select Code to Download


  1. or download this
    class Dog:
    
    ...
    
    # Instantiate the Dog object
    philo = Dog("Philo", 5)
    
  2. or download this
    package Dog;
    
    ...
    package main;
    
    my $philo = Dog->__init__('Philo', 5);
    
  3. or download this
    sub __init__ ($class, $name, $age)
    {
        my $self = bless {name => $name, age => $age}, $class;
    }