Skip to content

Instantly share code, notes, and snippets.

@sasssass
Created June 17, 2020 19:37
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 sasssass/622e7b70e31ad27c56bf9dc056639f0a to your computer and use it in GitHub Desktop.
Save sasssass/622e7b70e31ad27c56bf9dc056639f0a to your computer and use it in GitHub Desktop.
class Speaker {
var on = false
fun playSound(name : String){
if(on){
print("show {$name}")
}
}
fun on(){
on = true
}
fun off(){
on = false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment