Created
February 7, 2021 08:26
-
-
Save weihungchin/d2364924e009ead97f9d65a0eebca03c 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
data class Song(val genre: String, val artist: String){ | |
var title: String; | |
} | |
val songA: Song = Song("Pop", "Jamie") | |
val songB: Song = Song("Pop", "Jamie") | |
songA.title = "Take the train" | |
songB.title = "All blues" | |
songA.equals(songB) // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment