RosettaCodeData/Task/Copy-stdin-to-stdout/Groovy/copy-stdin-to-stdout.groovy
2023-07-01 13:44:08 -04:00

10 lines
241 B
Groovy

class StdInToStdOut {
static void main(args) {
try (def reader = System.in.newReader()) {
def line
while ((line = reader.readLine()) != null) {
println line
}
}
}
}