The Hello Name Application

class HelloName {

  public static void main (String args[]) {

    String name;     //Declare the variable name to be a String
    name = "Beth";  // Replace "Beth" with your own name

    /* Now let's say hello */
    System.out.println("Hello " + name);

  }

}

Copyright 1996 Elliotte Rusty Harold
elharo@sunsite.unc.edu
This Chapter
Examples
Home