User Tools

Site Tools


el:while

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

el:while [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== While / End While =====
 +==== Format ====
 +**while** //booleanexpression//\\
 +//statement(s)//\\
 +**end while**
 +==== Description ====
 +Execute the //statement(s)// inside the while loop until the //booleanexpression// evaluates to false.  While / End While executes the statements zero or more times.  The test is done before the code in the loop is executed.
 +==== See Also ====
 +{{page>en:start#Program Control&noheader}}
 +
 +==== Example ====
 +<code>
 +r = 1
 +while r < 6
 +  print r
 +  r = r + 1
 +end while
 +</code>
 +will display
 +<code>
 +1
 +2
 +3
 +4
 +5
 +</code>
 +==== New To Version ==== 
 +0.9.4g
  
el/while.txt ยท Last modified: 2020/02/28 10:46 (external edit)