// Hello World: a first program // Authored by millions and millions of programmers.... // This is DIS's version. // Notice how I'm trying to communicate name, version, authorship up "here"? // That's good style! (Of course, it would be better if I "chatted" less.) public class helloworld { public static void main(String[] args) { System.out.println("Hello, world!"); } }