home *** CD-ROM | disk | FTP | other *** search
/ DarkBasic Professional / DarkBasicPro.iso / data1.cab / App_Files / Editor / Templates / Loops / FOR-NEXT.dba < prev    next >
Encoding:
Text File  |  2004-09-22  |  149 b   |  5 lines

  1. FOR variable = lowvalue TO highvalue : ` replace variable, lowvalue, and highvalue
  2.    ` insert commands here
  3.  
  4. NEXT variable : ` replace variable
  5.