Files
kotlin-fork/compiler/testData/multiplatform/simple/common.kt
T

9 lines
137 B
Kotlin
Vendored

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