3 lines
92 B
Groovy
3 lines
92 B
Groovy
new File('output.txt').withWriter( w ->
|
|
new File('input.txt').withReader( r -> w << r }
|
|
}
|