// Studio: 4
// File: cup2
//
//  Which group did you show your work?
//      --->   
//
non terminal     Meal;

//
// Construct a grammar for a Meal that has ***exactly***
//    one choice from Column A (eggroll, wonton, salad)
//    one choice from Column B (hotsoursoup, eggdropsoup, noodlesoup)
//    one choice from Column C (beef, tofu, shrimp, chicken)
//  in exactly that order
//

Meal
	::= eggroll
	;
