Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MasoudFallahpour/f8cd352f3847e397f9d587b1a74e0ff2 to your computer and use it in GitHub Desktop.
Save MasoudFallahpour/f8cd352f3847e397f9d587b1a74e0ff2 to your computer and use it in GitHub Desktop.
class ProprietarySoftware : Software {
override fun getLicense() = "Some Proprietary Software License"
}
class FreeSoftware : Software {
override fun getLicense() = "Some Free Software License"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment