I think packages are remnants of Java which will b...
# announcements
m
I think packages are remnants of Java which will become less and less important in Kotlin. They also wouldn’t solve my problem. If I move my objects out of their parent type into distinct namespaces they’re still objects and nothing has changed. Would I move all constants out of the objects and into a different namespace at top-level they’d be used almost like global variables floating around and auto-completion would simply import them by importing the constants directly (e.g.
comma
in code instead of
Characters.Symbols.comma
).