/** 9/5/2018
  * This program introduces char data type
  */

public class Ding
{  
  public static void main(String[]  args) {
    char let = 9;
    System.out.println("Ding!" + let + "cursor is here.");
 }
} 
/** Lab 1: Write a program that declares at least 5 variables. Use types
  * int and double.
  * Your program should have at least 10 statements. Use assignment and println
  * to give values to variables and display them to the screen.
  */