RosettaCodeData/Task/Environment-variables/Kotlin/environment-variables.kts

8 lines
117 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// version 1.0.6
// tested on Windows 10
fun main(args: Array<String>) {
println(System.getenv("SystemRoot"))
}