Last active
December 3, 2018 07:19
-
-
Save Sottti/fe97224b4b3bafce3390dec5a20c930f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// 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