I have just bought an Arduino UNO R3 and I'm trying to get a small LED to blink every other second. But each time I try to verify or upload the code, I get the same error: "Error compiling for board Arduino/Genuino Uno". I have selected the correct board and port, and I have connected the LED correctly. Any help is appreciated.
Here is the code:
void setUp()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}