/* * Author: G Towell * File: HW.java * Desc: * This class just has two public variables. One static and one instance. It shows the effect of each. * Realistically, public variables are evil and should not be used **/ public class HW { /* * This should not be public, but for ease in demo */ public static int staticint = 0; /* * This should not be public, but for ease in demo */ public int publicint = 0; /********************** * @param args not used * Not used, just here because it can be. **********************/ public static void main(String[] args) { System.out.println("Hello World"); } }