Blink

This is the code I down loaded from the library. When I try to upload it it gives me thath message.
*/

void setup() {

pinmode(13, output):
}

void loop() {
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000):
}
ß