Skip to content

Instantly share code, notes, and snippets.

@lu4nm3
Created May 14, 2020 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lu4nm3/71a318ded07e2b2d22ab608919488924 to your computer and use it in GitHub Desktop.
Save lu4nm3/71a318ded07e2b2d22ab608919488924 to your computer and use it in GitHub Desktop.
trait Restaurant {
def menu: String
}
case class Mexican() extends Restaurant {
def menu: String = "tacos"
}
case class Italian() extends Restaurant {
def menu: String = "spaghetti"
}
case class Chinese() extends Restaurant {
def menu: String = "chow mein"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment