Skip to content

Instantly share code, notes, and snippets.

@timendum
Created July 27, 2011 10:07
Show Gist options
  • Save timendum/1109062 to your computer and use it in GitHub Desktop.
Save timendum/1109062 to your computer and use it in GitHub Desktop.
Down To in Java [ trick wtf ]
public class DownTo {
public static void main(String[] arc) {
for (int i = 20; i --> 0;) {
// i-- > 0
System.out.println("ok: "+i);
// prints 19, 18, 17... 0
}
}
}
@ArSiu
Copy link

ArSiu commented May 24, 2021

wtf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment