/** This program is intended to be used with the book "Java 6 -- Java 6 -- What Do You Want To Do?"
 * by Steven P. Warr and is distributed free of charge and without and expectations of remuneration.
 * Chapter BAS   NOTE all program names begin with the title of the chapter in which
 * they are intended to be used.   Copyright 2008 Steven P. Warr All rights reserved
 */


//import javax.swing.JOptionPane;  //All statements are ended with a ; (semicolon)
public class Bas01     // This line must be exactly the same except for the program name
{                      //  The name pBASa can be anything, but must be exactly the same 
			           // as the name you save the file as pBASa.java (case matters).  
	public static void main(String [ ] args)              //This line must be exactly the same on all        
		{                                                 // programs except Applets (See Chapter APP)
		       System.out.println("This prints in General Output box on the bottom of the screen");
//               JOptionPane.showMessageDialog(null, "This will print " + 
//                                                   "in a popup box on the screen");  //statement
                                 //Do not worry about null or how this works now.
                                 //You can use this in place of  System.out.println
                                 //but you must include the import javax.swing.JOptionPane; statement.
		                                                  //  it will also say Process completed
		}
}   // braces { } must be in pairs.  I like to align them vertically so they are easy to find.
