// Here Fun with Arduino For Loop
int j;
int delayT=500;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
for(j=10 ; j>=2 ; j=j-2)
{
Serial.println(j);
delay(delayT);
}
Serial.println();
}