/* CS193J PencilMeIn.java
 */
import java.util.Date;

/**
 * PencilMeIn is the main class for this program. The static method "main" is the one 
 * that will be called to start execution. As given, we do very little here, just print 
 * the welcome and do the outer loop to create schedules until the user indicates they are 
 * done.  You need to fill it the missing implementation for creating a schedule.
 *
 * @version      1.1 1/17/2002
 * @author       Your name here!
 */

public class PencilMeIn {

	public static void main(String args[]) 
	{
		System.out.println("\n\nWelcome to the Pencil Me In datebook program.");
		System.out.println("This program reads in event files and generates HTML weekly schedules.");
		System.out.println("For convenience, when you are asked a question, the answer given in [brackets]");
		System.out.println("is the default used if you don't choose to enter a response.");
		do 
			readOneFileAndCreateSchedules();
		while (SimpleInput.readYesOrNo("\nDo you wish to create other schedules?", "n"));
		System.out.println("Goodbye!");
	}
	
	public static void readOneFileAndCreateSchedules()
	{
		// FILL IN HERE!
	}
	
}
