/*
  Name: Nadeem Abdul Hamid
  Assignment: Lecture 1 example  
  File: HelloProblem.java
  Problem description:
    Display the message "Hello, World!" to the user.
  
  How I solved this problem/Assumptions/Difficulties/etc.:
    I assume that the message is to be displayed in the terminal window,
    so just printed out the message using the System.out object.
    
    At first, I forgot to put "" (quotation marks) around the text of the
    message - that caused  compiler errors that confused me for a while.
  
  
  CSC120B - Berry College - Fall 2005
*/


public class HelloProblem { 
  
  public static void main( String[] args ) {

    System.out.println( "Hello, World!" );

  } // end main method
  
} // end HelloProblem class
