void setup() {
  
  // Set the speed for the serial monitor
  Serial.begin(9600);

  for(int A=1; A<=5; A++) {
    ZegHallo();
  }
  
}

void loop() {
  
  // Leave this empty for now

}

void ZegHallo() {
  Serial.println("Hallo");
}