Skip to content

Instantly share code, notes, and snippets.

@iansan5653
Created October 29, 2020 01:21
Show Gist options
  • Save iansan5653/3d11fdc7d6819b7380c44764402534a6 to your computer and use it in GitHub Desktop.
Save iansan5653/3d11fdc7d6819b7380c44764402534a6 to your computer and use it in GitHub Desktop.
Create a Case Class
case class Apple(color: String) extends Fruit {
val isSour: Boolean = color == "green"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment