Skip to content

Instantly share code, notes, and snippets.

@houman-sanati
Created June 9, 2019 08:14
Show Gist options
  • Save houman-sanati/77b8c9bda59b4a222ce9a170c1e15335 to your computer and use it in GitHub Desktop.
Save houman-sanati/77b8c9bda59b4a222ce9a170c1e15335 to your computer and use it in GitHub Desktop.
data class Person(var name: String,
var age: Int,
var job: String) {
fun printPerson() = println(this.toString())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment