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

12 lines
181 B
Kotlin

package de.pheerai.rcdbquery
expect class Sample() {
fun checkMe(): Int
}
expect object Platform {
val name: String
}
fun hello(): String = "Hello from ${Platform.name}"