am
08/28/2019, 9:30 AMinternal key word
eg
internal const NAME_FOO:String = " "
class Foo{
}Amirul Zin
08/28/2019, 9:39 AMinternal marker is functionally a code noiseam
08/28/2019, 10:34 AMthanksforallthefish
08/28/2019, 10:36 AMinternal marks visibility to the entire module, so every other file in the same module would have access to it, disregarding other forms of packaging. I think that is what Amirul means, if you have a single module, internal practically means public (and in kotlin everything is public by default)thanksforallthefish
08/28/2019, 10:38 AM