help

hey im new at this and the first code dos not work it tells me" output in not declare in scope"int ledPin=8;

int ledpin=8; //definition digital 8 pins as pin to control the LED
void setup()
{
pinMode(ledPin,OUTPUT); //Set the digital 8 port mode, OUTPUT:
Output mode
}
void loop()
{
digitalWrite(ledPin,HIGH); //HIGH is set to about 5V PIN8
delay(1000); //Set the delay time, 1000 = 1S
digitalWrite(ledPin,LOW); //LOW is set to about 5V PIN8
delay(1000); //Set the delay time, 1000 = 1S

Please use code tags to post sketches and error messages ( </> )

There is also a post about how to use this section of the forum you may want to read that.

BTW your code is missing a closing argument.
If you compare it to the BLINK example you will see what I mean.