RosettaCodeData/Task/Reverse-a-string/Kotlin/reverse-a-string.kts

4 lines
65 B
Kotlin

fun main(args: Array<String>) {
println("asdf".reversed())
}