f3344ec2b2
#KT-15522 Fixed
9 lines
156 B
Kotlin
Vendored
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!")
|
|
}
|