/** * Example of some of the starting points in Java * * @author Hunter Lloyd * @version 1/23/2004 */ public class Sept15 { // This is a comment public static void main(String [] args) { String myString; myString = "helloCS160"; String mySecondString = "Second String"; System.out.println("Hello Cs160"); System.out.print("Second line: "); System.out.println(myString); System.out.println(mySecondString); /* advanced topic */ int answer = myString.length(); System.out.println("answer = " + answer); } }