commonMain.it.unibo.tuprolog.Platform.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-jvm Show documentation
Show all versions of core-jvm Show documentation
Knowlege representation via logic terms and clauses
package it.unibo.tuprolog
enum class Platform(val isJava: Boolean, val isJavaScript: Boolean) {
JVM(true, false),
ANDROID(true, false),
NODE(false, true),
BROWSER(false, true)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy