user7858768
user7858768

Reputation: 1026

Kotlin/Native - does this mean Kotlin & Kotlin Native or Kotlin Native

Kotlin documentation is full of mentioning "Kotlin/Native"

Example:

There are many more platform libraries available for host and cross-compilation targets. Kotlin/Native distribution provides access to OpenGL, zlib and other popular native libraries on applicable platforms. - https://kotlinlang.org/docs/native-platform-libs.html#popular-native-libraries

Does "Kotlin/Native" mean:

or does it mean

Upvotes: 1

Views: 140

Answers (1)

hotkey
hotkey

Reputation: 147941

Kotlin/Native is the name used just for the Native targets of Kotlin.

In general, something is said to support Kotlin Multiplatform if it targets Kotlin/JVM (+Android), Kotlin/JS, and Kotlin/Native – or a subset of those – while Kotlin/Native means specifically the targets that assume compiling Kotlin to the platform's native binaries.

Upvotes: 2

Related Questions