RosettaCodeData/Task/Copy-stdin-to-stdout/Kotlin/copy-stdin-to-stdout.kts
2024-10-16 18:07:41 -07:00

7 lines
119 B
Kotlin

fun main() {
var c: Int
do {
c = System.`in`.read()
System.out.write(c)
} while (c >= 0)
}