Last active
December 3, 2018 07:13
-
-
Save Sottti/208cc22db5ea9aff9f4882203ee1892e 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
// AnotherFile.kt file | |
// numberThree is visible to any other file because it's public | |
// numberEight is visible to any other file because User and numberEight are public | |
// numberEleven is visible to any other file because Moderator and numberEleven are public | |
private const val numberTwentyTwo = numberThree + User().numberEight + Moderator().numberEleven |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment