Is there a good way to get the version of kotlin p...
# announcements
j
Is there a good way to get the version of kotlin programmatically from within java/kotlin/groovy code??
i
You can get the current version of the standard library with
KotlinVersion.CURRENT
http://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-kotlin-version/index.html
j
Thanks!!