7 lines
189 B
Kotlin
7 lines
189 B
Kotlin
package xyz.tyiu.satsprice
|
|
|
|
class JVMPlatform : Platform {
|
|
override val name: String = "Java ${System.getProperty("java.version")}"
|
|
}
|
|
|
|
actual fun getPlatform(): Platform = JVMPlatform() |