/**
   This program defines and calls a simple method.
*/

public class SimpleMethodDriver
{
   public static void main(String[] args)
   {
      System.out.println("Hello from the main method.");
		
		// will need to use a qualified name
      SimpleContainer.displayMessage();
		
      System.out.println("Back in the main method.");
   }
}