public SomeClass { private static String supervisorFirstName = ""; private Date employeeHireDate = null; private String supervisorLastName; public static void main(String args[]) { String arg0 = args[0]; System.out.println(arg0); int argSize = args.length; int i = 5; i = i + 2 + 3; i += 2; i++; long x = 5; int y = (int)x + 10; byte b = (byte)x / 5; int firstNumber = Integer.parseInt(args[0]); String kim = "Hello"; String paul = "World"; char c = kim.charAt(2); //Third character boolean bRetVal = kim.equals(paul); String instructor = "joe"; System.out.println(instructor.equals("Joe")); int i = Integer.parseInt(args[0]); System.out.println(i); int aValue = 'A'; // equals 65 char aChar = 'A'; // equals 'A' char twoChar = '2'; // equals '2' int twoValue = '2'; // equals 50 int twoVal = 2; // equals 2 } }