unsigned int count = 0;
void setup()
{
//put your set up code here, to eun once:
Serial.begin(9600);
}
void loop()
{
Serial.print("Hello World ");
delay(1000); //this speed up the simulation
count++;
Serial.println(count);
delay(1000); //this speed up the simulation
}