RosettaCodeData/Task/Environment-variables/Kotlin/environment-variables.kts
2024-10-16 18:07:41 -07:00

7 lines
117 B
Kotlin

// version 1.0.6
// tested on Windows 10
fun main(args: Array<String>) {
println(System.getenv("SystemRoot"))
}