4 lines
190 B
Perl
4 lines
190 B
Perl
my $instance = MyClass->new; # invoke constructor method
|
|
|
|
$instance->some_method; # invoke method on object instance
|
|
# instance deallocates when the last reference falls out of scope
|