Skip to content

Instantly share code, notes, and snippets.

@yuriyskulskiy
Created June 15, 2020 09:07
Show Gist options
  • Save yuriyskulskiy/3bc288258a3483940f08340605750e8a to your computer and use it in GitHub Desktop.
Save yuriyskulskiy/3bc288258a3483940f08340605750e8a to your computer and use it in GitHub Desktop.
private class Outer {
val outerValue = "Outer value"
class LooksLikeInner {
fun printOuterValue() {
// println(outerValue)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment