First page
Back
Continue
Last page
Overview
Repetition Structures: The
while
-loop
The
while
loop structure provides a useful method for performing a set of commands while a condition remains true. The syntax is:
while
condition
do
commands...
done