/*
 * Sample menu planner script:
 */
meal: {$meat
$starch
$vegetable
$salad
}
|{$meat
$starch
$vegetable
$salad
}
|{$meat
$starch
$salad
}
|{$casserole
$salad
}
|{$stirfry
rice
}
;

meat: {pot roast}
    | {meat loaf}
	| {fried chicken}
	| {pork chops}
	| {hamburgers}
	| {beef bourgigneon}
	;

starch: {baked potatoes}
      | {boiled potatoes}
	  | {mashed potatoes}
	  | {rice}
	  | {pasta}
	  ;

vegetable: {corn}
		 | {peas}
		 | {green beans}
		 | {broccoli}
		 | {cauliflower}
		 | {carrots}
		 | {oriental vegetables}
		 ;

salad: {green salad}
	 | {fruit salad}
	 | {waldorf salad}
	 | {jello salad}
	 ;

stirfry: {stir fried chicken}
       | {stir fried beef}
	   | {stir fried shrimp}
	   ;

casserole: {macaroni and cheese}
         | {tuna casserole}
		 ;
