Program Flow: Contents

  1. Introduction
  2. Comparison operators
  3. Choosing to execute some instructions (If...Else...EndIf)
  4. Choosing one set of instructions from a set (Select...Case...EndSelect)
  5. Repeating instructions a number of times (For...Next)
  6. Repeating instructions while something is happening (While...Wend)
  7. Repeating instructions until something happens (Repeat...Until)
  8. Exiting loops early (Goto, FakeEndSelect)
  9. Summary
  10. Exercises