hello, i want to ask about kotlin jvm. after you compile it to java bytecode, is it possible to bundle it in such a way that computers without java can run it?
t
Ties
06/19/2022, 10:34 AM
Kotlin can be compiled to native, maybe that's what what you are looking for?
c
cheeze2000
06/19/2022, 10:37 AM
i realised that kotlin native cannot use java libraries (like java.io.File) so i'm considering kotlin jvm
e
ephemient
06/19/2022, 10:40 AM
jlink can bundle a necessary subset of the JVM with your app. or Graal native-image can perform AOT compilation to a native executable