/* This  is the very essential first program, also known as the lame "Hello World"
 *normally seen in many beginner's program
 */
 
 public class Welcome2 
 {
 	//this is the start of the main method
 	public static void main ( String args[] )
 	{
 	
 		//System.out.println ( "OLD LINE: Hello World and Welcome!" );
 		System.out.println ( "Hello World and Welcome! \n\nThis is the second program" );
 		System.out.println ( "" );
 		System.out.println ( "This has the backslash n command with no spaces \nwhich makes the 'This..' go to a new line" );
 		System.out.println ( "" );
 	
 	} //end the main method	
 	
 } // end the class