/** * HelloWorld */ public class HelloWorld { // beginning static private String hello = "Hello"; private static String world = "world"; // ending static public void main (String args []) { System.out.println (hello + ", " + world + "!"); } }