Created
July 25, 2012 17:27
-
-
Save JAChapmanII/3177401 to your computer and use it in GitHub Desktop.
simple java thing with inner class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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