int i=1;
void setup() {
Serial.begin(9600);
for (i;i<=10; i=i+1)
{
Serial.println(i);
}
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
int i=1;
void setup() {
Serial.begin(9600);
for (i;i<=10; i=i+1)
{
Serial.println(i);
}
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}