How to _geterr() ?
pik33
Posts: 2,366
From the manual: the error can be checked with _geterr()
open "dirlist.txt" for input as #5 e=_geterr()
The result:
error: Unknown symbol _geterr
Comments
That's a typo in the documentation, the correct spelling is "geterr()" (without the underscore), and it's documented elsewhere in the manual.