/usr/local/CPAN/Class-Interface/Car/German.pm


package Car::German;

sub start {
  print "Anfängen!";
}

sub stop {
  print "HALT!"
}

1;