Skip to content

Instantly share code, notes, and snippets.

@badlogic
Created December 23, 2014 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save badlogic/34e3a66e85820f411118 to your computer and use it in GitHub Desktop.
Save badlogic/34e3a66e85820f411118 to your computer and use it in GitHub Desktop.
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) throws InterruptedException {
for (int wu : Arrays.asList(0, 1, 2)) {
wu += 1;
if (wu == 0) {
wu -= 1;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment