3 lines
96 B
Ruby
3 lines
96 B
Ruby
|
|
str = File.open('input.txt', 'rb') {|f| f.read}
|
||
|
|
File.open('output.txt', 'wb') {|f| f.write str}
|