Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This BASIC+ program fragment illustrates the typical flow of a simple SELECT:

 

Code Block
SELECT FILE ; * establish "latent" select
DONE = 0
LOOP
  READNEXT @ID ELSE DONE = 1
  UNTIL DONE DO
    /* process the row */
REPEAT