The Hello Name Application

// This is the Hello Name program in Java

class HelloName {

  public static void main (String args[]) {

    //Declare the variable name to be a String
    String name;

    // Replace "Rusty" with your own name    
    name = "Rusty";  

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

  }

}

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