User Tools

Site Tools


en:dountil

Differences

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

Link to this comparison view

en:dountil [2016/08/12 13:00]
admin
en:dountil [2020/02/28 10:46]
Line 1: Line 1:
-===== Do / Until ===== 
- 
-==== Format ==== 
- 
-**do**\\ 
-[[programsyntax|statement(s)]]\\ 
-**until** //booleanexpression// 
- 
-==== Description ==== 
- 
-Execute the [[programsyntax|statement(s)]] inside the do loop whil the //booleanexpression// evaluates to false.  Do / Until executes the statements one or more times.  The test is done after each time the code in the loop is executed. 
- 
-==== See Also ==== 
- 
-[[fornext|For / Next]], [[whileendwhile|While / End While]] 
- 
-==== Example ==== 
- 
-<code> 
-t = 1 
-do 
-  print t 
-  t = t + 1 
-until t > 5 
-</code> 
-will print 
-<code> 
-1 
-2 
-3 
-4 
-5 
-</code> 
- 
-==== New To Version ====  
- 
-0.9.4g 
- 
  
en/dountil.txt ยท Last modified: 2020/02/28 10:46 (external edit)