Skip to content

Instantly share code, notes, and snippets.

@BraveTea
Created February 10, 2017 10:47
Show Gist options
  • Save BraveTea/c25d1401200bf4685fd83e49db7f71ba to your computer and use it in GitHub Desktop.
Save BraveTea/c25d1401200bf4685fd83e49db7f71ba to your computer and use it in GitHub Desktop.
Code Library : L : Infinity Loop
/* an infinity for loop
for ( ; ; )
/* and I also believe below should work. Even so, I think below is what I should use for I can reuse 'i' (e.g. Serial.println(i) in debug)
for (int i = 0; 0 >= 0; i++)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment