container.java 203 B

123456789
  1. public class container {
  2. /**
  3. * Simple "hello world" to test the java can compile and/or run
  4. */
  5. public static void main(String[] args) {
  6. System.out.println("Hello World!");
  7. System.exit(0);
  8. }
  9. }