Input loop: Difference between revisions

Line 96:
=={{header|AutoHotkey}}==
This example reads the text of a source file line by line and writes the output to a destination file.
<lang autoHotkeyAutoHotkey>
Loop, Read, Input.txt, Output.txt
{
FileAppend, %A_LoopReadLine%`n
}
</lang>
 
Anonymous user