void setup()
{
pinMode(13,output);
}
void loop()
{
digital Write(13,HTGH);//turn the LED on (High is the voltage leval )
delay (1000);//wait for a second
digital Write (13,LOW);turn the LED off by making the voltage low )
delay(1000);wait for a second
}