Skip to content

Instantly share code, notes, and snippets.

@gahfy
Last active December 11, 2020 08:31
Show Gist options
  • Save gahfy/af3523d256299b85befab3a6fa429233 to your computer and use it in GitHub Desktop.
Save gahfy/af3523d256299b85befab3a6fa429233 to your computer and use it in GitHub Desktop.
class CheckBox(){
var isChecked: Boolean = false
fun click(){
isChecked = !isChecked
}
}
class TextView(private var text: String){
fun click(){
//... some code
}
fun setText(text: String){
this.text = text
}
fun getText() = this.text
}
fun main(){
val frenchCheckBox = CheckBox()
val frenchTextView = TextView("Are you french?")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment