N + 1

I got it :slight_smile: n++ was the key. The program worked out this way:

int start = 0;
int N = 0;

void setup(){
  Serial.begin(9600);
}

void loop(){
  Serial.println(N++);
  delay(1);
}

I know it's a silly little thing, but learning is learning!