/* This  is the very essential first program, also known as the lame "Hello World"
 *normally seen in many beginner's program
 */
 
 public class Welcome3 
 {
 	//this is the start of the main method
 	public static void main ( String args[] )
 	{
 	
 		System.out.println ( "The slash double quote TEXT slash double quote displays things in quotes" );
 		System.out.println ( "" );
 		System.out.println ( "\"OLD LINE: Hello World and Welcome!\"" );
 		System.out.println ( "" );
 		 	
 	} //end the main method	
 	
 } // end the class