Lewis Diamond
process.stdin
nanodeath
in
readLine()
fun stdin(): Flow<String?> = flow { // flow builder while (true) { var x = readLine(); emit(x); } }
readLine() ?: break
A modern programming language that makes developers happier.