MAN PAGES // WEEK 20
LOOPS: WHILE, FOR, NESTED · Ch 8 Sec 5-7 · six terms · write your own usage line under each
$ man LOOP
code that repeats while a condition holds
$ man WHILE_LOOP
repeats as long as its condition stays true
$ man FOR_LOOP
counter, condition, and step in one line
$ man ITERATION
one pass through a loop's body
$ man INFINITE_LOOP
a loop whose condition never fails; the tab freezes
$ man NESTED_LOOP
a loop running inside another loop