Skip to content

Instantly share code, notes, and snippets.

@Sottti
Last active December 3, 2018 07:19
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 Sottti/fe97224b4b3bafce3390dec5a20c930f to your computer and use it in GitHub Desktop.
Save Sottti/fe97224b4b3bafce3390dec5a20c930f to your computer and use it in GitHub Desktop.
// Internal.kt file
// Visible to everyone in the same module
internal const val numberThree = 3
// Visible to everyone in the same module
internal open class User() {
// Visible to everyone in the same module that has visibility on User
internal val numberEight = numberThree.plus(5)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment