Files
kotlin-fork/compiler/testData/multiplatform/simple/common.kt
T
2017-10-05 00:10:42 +03:00

9 lines
156 B
Kotlin
Vendored

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