Skip to content

Instantly share code, notes, and snippets.

@yuriyskulskiy
Created June 15, 2020 03:28
Show Gist options
  • Save yuriyskulskiy/930f2ea65d3dbaff4a40bfacc7e6fd90 to your computer and use it in GitHub Desktop.
Save yuriyskulskiy/930f2ea65d3dbaff4a40bfacc7e6fd90 to your computer and use it in GitHub Desktop.
open = not final classes
class Parent {
var name: String = "Evlampiy"
fun flyToAnotherCountry() {
throw UnsupportedOperationException("it's quarantine time, u cant fly")
}
fun doNothing() {
//do nothing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment