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