// Hello world in the Arduino programming language

void setup() {
  Serial.begin(9600);
  Serial.println("Hello, world!");
}

void loop() {
}