sub in_class {
my $class = shift; # object reference
my ($this, $that) = @_; # params
}
Methods may be invoked like this:
PackageName->constructor(args)->method_name(args);
or:
$object = PackageName->constructor(args);
$object->method_name(args);
Objects have a specific set of available methods within their class,
but they also inherit methods from their parent class, if they have
one.