Read a file character by character/UTF8: Difference between revisions

→‎{{header|AutoHotkey}}: Created AutoHotkey entry
(→‎{{header|Common Lisp}}: Add Déjà Vu example)
(→‎{{header|AutoHotkey}}: Created AutoHotkey entry)
Line 8:
;See also
* [[Read a file line by line]]
 
=={{header|AutoHotkey}}==
{{works with|AutoHotkey 1.1}}
<lang AutoHotkey>File := FileOpen("input.txt", "r")
while !File.AtEOF
MsgBox, % File.Read(1)</lang>
 
=={{header|C}}==
Line 31 ⟶ 37:
return EXIT_SUCCESS;
}</lang>
 
 
=={{header|Common Lisp}}==
266

edits