Skip to content

Instantly share code, notes, and snippets.

@igorwojda
Last active April 11, 2018 18:45
Show Gist options
  • Save igorwojda/c2302a3d1bf3e55cee45beb493ae1a63 to your computer and use it in GitHub Desktop.
Save igorwojda/c2302a3d1bf3e55cee45beb493ae1a63 to your computer and use it in GitHub Desktop.
//BAD
class Person () {
private var weight:Double = 0
fun setWeight(weight:Double) {
this.weight = weight
}
fun getWeight(): Double {
return weight
}
}
//GOOD
class Person (var weight:Double)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment