Created
February 10, 2017 10:47
-
-
Save BraveTea/c25d1401200bf4685fd83e49db7f71ba to your computer and use it in GitHub Desktop.
Code Library : L : Infinity Loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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