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