home *** CD-ROM | disk | FTP | other *** search
/ DarkBasic Professional / DarkBasicPro.iso / data1.cab / App_Files / Editor / Templates / Conditionals / FOR-NEXT-STEP.dba next >
Encoding:
Text File  |  2004-09-22  |  175 b   |  6 lines

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