1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 11:25:14 +00:00
qb64/internal/help/EOF.txt

19 lines
409 B
Plaintext

The '''EOF''' Function indicates that the end of a file has been reached.
{{PageSyntax}}
:: DO WHILE [[NOT]] EOF(filenumber%)
* Filenumber is the number of the file being read. # is not required.
* Returns 0 until the end of a file. This avoids a file read error.
* Returns -1 at the end of the file.
* [[CHR$]](26) can be used to denote the end of a file.
''See also:''
* [[LOF]]
{{PageNavigation}}