Skip to content

Instantly share code, notes, and snippets.

@davidpaniz
Created December 22, 2014 20:51
Show Gist options
  • Save davidpaniz/e5d58081c5ab2564f982 to your computer and use it in GitHub Desktop.
Save davidpaniz/e5d58081c5ab2564f982 to your computer and use it in GitHub Desktop.
class test {
{
System.out.println("one");
}
static {
System.out.println("static one");
}
public static void main(String[] args) {
new test().run();
new test().run();
}
private test() {
{
System.out.println("two");
}
}
{
System.out.println("three");
}
static {
System.out.println("static two");
}
public void run() {
System.out.println("hmm...");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment