blob: 34f68a76505e491ada1f4da62fa3eb361f74492c [file] [log] [blame]
package org.mifos.openbanking
expect class Sample() {
fun checkMe(): Int
}
expect object Platform {
val name: String
}
fun hello(): String = "Hello from ${Platform.name}"
class Proxy {
fun proxyHello() = hello()
}
fun main() {
println(hello())
}