9 lines
167 B
Text
9 lines
167 B
Text
// Kotlin Native v0.2
|
|
|
|
import kotlinx.cinterop.*
|
|
import string.*
|
|
|
|
fun main(args: Array<String>) {
|
|
val hw = strdup ("Hello World!")!!.toKString()
|
|
println(hw)
|
|
}
|