void setup() {
  Serial.begin(9600);
}

void loop() {
  //Serial.print("hai: ");
  Serial.println("Hello world!");
  delay(1000);
}