1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-10 08:55:12 +00:00
QB64-PE/internal/help/EOF.txt

19 lines
413 B
Plaintext
Raw Normal View History

The '''EOF''' Function indicates that the end of a file has been reached.
{{PageSyntax}}
2016-03-18 11:36:04 +00:00
:: 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}}