Skip to content

Instantly share code, notes, and snippets.

@weihungchin
Created February 7, 2021 08:26
Show Gist options
  • Save weihungchin/d2364924e009ead97f9d65a0eebca03c to your computer and use it in GitHub Desktop.
Save weihungchin/d2364924e009ead97f9d65a0eebca03c to your computer and use it in GitHub Desktop.
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