Files
2023-12-04 13:08:23 +00:00

14 lines
172 B
Kotlin
Vendored

// LANGUAGE: +MultiPlatformProjects
fun main() {
println("Hello, Kotlin/Native!")
}
expect fun f()
fun test() {
}
actual fun f() { <expr>println("Hello")</expr> }