The Hello Name Application

// This is the Hello Name program in Java

class HelloName {

  public static void main (String args[]) {
      
    String name = "Rusty";  

    /* Say hello */
    System.out.println("Hello " + name);

   }

} 

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