Files
kotlin-fork/compiler/testData/multiplatform/simple/common.kt
T
Alexander Udalov a4169416ad Support platform modifier in back-ends, add multi-platform integration test
Skip 'platform' declarations completely in back-ends
2016-11-25 20:50:22 +03:00

9 lines
156 B
Kotlin
Vendored

platform class Printer {
fun print(message: String)
}
fun main(args: Array<String>) {
val printer = Printer()
printer.print("Hello, world!")
}