jvmMain.Native.jvm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konapi-jvm Show documentation
Show all versions of konapi-jvm Show documentation
Kotlin Native for Raspberry Pi
The newest version!
package ch.softappeal.konapi
import java.io.File
public actual fun readFile(path: String): ByteArray = File(path).readBytes()
public actual fun sleepMs(milliSeconds: Int) {
Thread.sleep(milliSeconds.toLong())
}