Created
October 29, 2020 01:21
-
-
Save iansan5653/3d11fdc7d6819b7380c44764402534a6 to your computer and use it in GitHub Desktop.
Create a Case Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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