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

8 lines
117 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
// version 1.0.6
// tested on Windows 10
fun main(args: Array<String>) {
println(System.getenv("SystemRoot"))
}