module hello;

robot HelloBot {
  actuator speaker: DifferentialDrive;

  behavior hello() {
    speaker.stop();
  }
}
