What effects does the version of the jvm you targe...
# getting-started
h
What effects does the version of the jvm you target have on kotlin code? I've never written kotlin/jvm that isn't targetting 1.8
m
On the code you actually write, none. There are minor additions going from 6->7 and 7->8, hence the 2 additional libraries. At runtime, you get any advantages of the newer JVM. Secuirty patches, better performance, less memory, and any other optimizations that may have taken place.
k
https://kotlinlang.org/docs/reference/faq.html#does-kotlin-only-target-java-6
More optimal byte code may be generated for higher versions of the platform.