Created
November 22, 2019 13:15
-
-
Save josep2/84430e99128c9f3624f9819fe58db7ed to your computer and use it in GitHub Desktop.
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 Album(title: String, year: Int) | |
val bitusa = Album("Born in the USA", 1980) | |
val bitusaRemaster = Album.copy(year = 1991) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment