All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.Native.jvm.kt Maven / Gradle / Ivy

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())
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy