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