/** * Showing primitive data types. * * Hunter Lloyd * January 28th */ public class First { //class name must be the same as file name public static void main(String [] args) { char letter = 't'; double bigFloat = 3.4; boolean tOrF = true; int realNumber = 5; //byte singleByte; //float smallFloat; //long realBigNumber; //short realSmallNumber; String partOfAPI = "didn't change colors"; String mathString = 2 + 3 + "55"; final int MAX = 10; char let1 = 'H'; //Don't forget Java is case sensitive char let2 = 'u'; char let3 = 'n'; System.out.println(let1 + let2 + let3); } }