First page Back Continue Last page Overview

 

Repetition Structures: The for-loop

 
  • The for repetition structure provides a method for iterating, or looping, through a list of values and executing commands on each of these values.

    • for variable in list-of-values
    • do commands...
    • done