File input/output: Difference between revisions

(→‎{{header|UNIX Shell}}: Bug: 'read' strips the leading tabs and spaces from each line. Thanks to the mksh(1) manual for the fix.)
Line 591:
 
=={{header|Euphoria}}==
{{works with|Euphoria|4.0.0}}
 
<lang euphoria >include std/io.e
write_lines("output.txt", read_lines("input.txt"))</lang>
include std/io.e
write_lines("output.txt", read_lines("input.txt"))
</lang>
 
=={{header|Erlang}}==
Anonymous user