Created
June 15, 2020 03:28
-
-
Save yuriyskulskiy/930f2ea65d3dbaff4a40bfacc7e6fd90 to your computer and use it in GitHub Desktop.
open = not final classes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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