Read a file line by line: Difference between revisions

no edit summary
No edit summary
Line 239:
.include "../includeARM64.inc"
</lang>
 
=={{header|Action!}}==
<lang>char array TXT
 
Proc Main()
 
Open (1,"D:FILENAME.TXT",4,0)
Do
InputSD(1,TXT)
PrintE(TXT)
Until EOF(1)
Od
Close(1)
 
Return
</lang>
 
{{Out}}
<pre>
</pre>
 
=={{header|Ada}}==
Anonymous user