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

jvmMain.it.unibo.tuprolog.Introspection.kt Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package it.unibo.tuprolog

import java.io.File

internal actual fun currentPlatform(): Platform =
    if (System.getProperty("java.vm.name").contains("Dalvik", ignoreCase = true)) {
        Platform.ANDROID
    } else {
        Platform.JVM
    }

internal actual fun currentOs(): Os =
    Os.detect(System.getProperty("os.name")) ?: if (File.separator == "\\") Os.WINDOWS else Os.UNKNOWN_POSIX




© 2015 - 2024 Weber Informatics LLC | Privacy Policy