/* 9/24/2019
 * your name
 * CISC 1115
 * Java API, e.g. println in the System class
 * Strings as sequences of characters
 * escape sequences
 * concatenating strings with the + operator
 */
public class Hello2 {
  
  public static void main(String[] args) {
    
    System.out.print("Today is "); // display Hello World
    System.out.println(" Sept 4.");
    System.out.println("Plan for today: \n Wake up \n Go to class \n"
                      + " and the list goes on and on ");
  }
  
}