use strict; use warnings; use Foo1; my $obj = bless {},"Foo1"; $obj->bar( "Instance Method"); # Calling an instance method. # this passes DIFFERENT parameters than the class method. Foo1::bar("Class Method call"); Foo1->bar("Pseudo-method call");