rcdbquery/src/commonMain/kotlin/de/pheerai/rcdbquery/Sample.kt

12 lines
181 B
Kotlin
Raw Normal View History

2020-04-04 13:37:27 +02:00
package de.pheerai.rcdbquery
expect class Sample() {
fun checkMe(): Int
}
expect object Platform {
val name: String
}
fun hello(): String = "Hello from ${Platform.name}"