/** * This Hello World example has been created by * Scott Fradkin, 2007. * * This source code is licensed under the * Creative Commons Attribution-NonCommercial-ShareAlike 2.5 * license. More information can be found at * http://creativecommons.org/licenses/by-nc-sa/2.5/ */ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); return; } }