Examples of smaller Java programs that do various interesting things.

HelloWorld.java 191B

12345678910
  1. /* HelloWorld.java
  2. */
  3. public class HelloWorld
  4. {
  5. public static void main(String[] args) {
  6. // Don't you DARE choose this for your choice! :-)
  7. System.out.println("Hello World!");
  8. }
  9. }