Skip to content

Instantly share code, notes, and snippets.

@JAChapmanII
Created July 25, 2012 17:27
Show Gist options
  • Save JAChapmanII/3177401 to your computer and use it in GitHub Desktop.
Save JAChapmanII/3177401 to your computer and use it in GitHub Desktop.
simple java thing with inner class
public class Rublets {
public static void main(String[] args) {
Rublets.Test t = new Rublets.Test();
t.run();
}
public static class Test {
public void run() {
System.out.println("Hello");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment