Skip to content

Instantly share code, notes, and snippets.

@natbusa
Last active August 29, 2015 13:56
Show Gist options
  • Save natbusa/8924771 to your computer and use it in GitHub Desktop.
Save natbusa/8924771 to your computer and use it in GitHub Desktop.
elements as case classes
case class ToastedBread(slices: Int)
case class FriedEggs(num: Int)
case class CrispyBacon(strips: Int)
case class OrangeJuice(glasses: Int)
case class HotCoffee(mugs: Int)
case class MainDish(eggs: FriedEggs, bacon: CrispyBacon)
case class SideDish(toast: ToastedBread)
case class Drinks(juice: OrangeJuice, coffee: HotCoffee)
case class Breakfast(main: MainDish, side: SideDish, drink: Drinks)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment