Is there an EOF operator in Ti-83 Basic like in many other languages, such as C? I know that some programmes terminate when the "On" button is pressed (much like the EOF operator, Ctrl+D, in *nix), but I haven't been able to figure out how this operation is assigned.
As a very bad example, say I have
:Prompt Str0
:While Str0 ≠ "EOF"
:Disp "This code works!"
:Prompt Str0
:End
I want it to print "This code works!" and then prompt for Str0 until I enter a key combo ("On" button, I'm guessing) that terminates the file.
Now of course there are other ways of expressing the code above that do not rely on EOF. I'm just trying to give a simple example of what a scenario in which EOF might be useful.