Get System User Name

// How to get username in Kotlin
fun main() {
    println(
        "Hello, ${System.getProperty("user.name")}"
    )
}