package myModule; sub new { return bless{}, shift;} sub test { my $self = shift; my $param = shift; return $param * 1; } 1;