package MyCar; # Constructor method sub new { my $self = { wheels => 4, speed => 0, gas => 10}; bless $self, "MyCar"; }