
abstract class Eleven extends Ten {

	//Variables
	
	protected static Ten commandments;
	
	//Methods
	
	static String QuotationOfTheDay () { 
		return "It was the the best of times.  It was the worst of times.";
	}
	
	public abstract String QuotationOfTheWeek (String intro) {}
}