Skip to content

Instantly share code, notes, and snippets.

@joa
Created February 24, 2012 18:54
Show Gist options
  • Save joa/1902944 to your computer and use it in GitHub Desktop.
Save joa/1902944 to your computer and use it in GitHub Desktop.
What is the output?
public final class Main {
public static void main(final String[] args) {
while(true) {
try {
System.out.println("1");
continue;
} finally {
System.out.println("2");
break;
}
}
System.out.println("3");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment