I'm making a terminal program, and while it is inc...
# kotlin-native
a
I'm making a terminal program, and while it is including a couple libraries, the release exe is > 5MB. It's not a big deal for this project, but I was wondering more broadly on what Kotlin/Native exes were going to look like size wise, are we expecting that with future versions of Kotlin/Native they will get smaller?
l
The runtime in Kotlin is larger than C, so he base size will be larger. However, that doesn't mean that it's always larger by some factor. I recommend not worrying about it, unless you actually see a binary being much larger than expected.
a
Ya I was mainly just curious