Arduino HID Keyboard Pfeiltasten und F Tasten

void setup() {
  Serial.begin(250000);
  if (HIGH == LOW);
    Serial.println(F("LOW ist anscheinend gleich HIGH (mit Semikolon ;)"));
  if (HIGH == LOW)
    Serial.println(F("LOW ist anscheinend gleich HIGH (ohne Semikolon))"));
  if (HIGH == LOW) {
    Serial.println(F("LOW ist anscheinend gleich HIGH (mit Klammern {})"));
  }
}
void loop() {}
LOW ist anscheinend gleich HIGH (mit Semikolon ;)