1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 13:31:23 +00:00
QB64-PE/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}}