Skip to content

Instantly share code, notes, and snippets.

@igorwojda
Created April 8, 2018 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorwojda/b66829e471650d019d8cb2dad1114a5f to your computer and use it in GitHub Desktop.
Save igorwojda/b66829e471650d019d8cb2dad1114a5f to your computer and use it in GitHub Desktop.
class Person (var name:String, var lastName:String, var weight:Double) {
val fullName
get() = "$name $lastName"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment