Skip to content

Instantly share code, notes, and snippets.

@biancarosa
Last active August 29, 2015 14:05
Show Gist options
  • Save biancarosa/d5012048aae2370acd20 to your computer and use it in GitHub Desktop.
Save biancarosa/d5012048aae2370acd20 to your computer and use it in GitHub Desktop.
Java public inner class
public class Foo {
Foo() {
System.out.println("Creating foo...");
}
//Public inner class
public class Bar {
Bar() {
System.out.println("Creating bar...");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment