/************************************************************
 * MadLibDriver - Starts the process of playing the MadLib game
 *
 * @author Nancy Harris, James Madison University
 * @version V1 - October 2013
 ************************************************************/
 public class MadLib
 {
 	/*********************************************************
	 * main builds the MadLib object and starts the story
	 *
	 * @param args Command line arguments - unused in this application
	 *********************************************************/
	public static void main(String args[])
	{
		MadLibGame myStory;
		myStory = new MadLibGame();
		myStory.tellStory();
	}
}