Created
October 25, 2013 12:06
-
-
Save berb/7153639 to your computer and use it in GitHub Desktop.
"If Loops in Java" Also see: http://www.if-schleife.de/
This file contains 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
public class IfLoop { | |
public static void main(String[] args) { | |
IF: do { | |
if (true) { | |
// do something... | |
continue IF; | |
} | |
} while (true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment