home *** CD-ROM | disk | FTP | other *** search
/ Game Programming for Teens / GameProgrammingForTeens.iso / Source / chapter03 / demo03-01.bb next >
Encoding:
Text File  |  2003-04-06  |  170 b   |  7 lines

  1. ;demo03-01.bb - counts from 1 to 10
  2. ;start counter at one and loop till 10
  3. For counter = 1 To 10 
  4.     ;Print whatever counter is equal to
  5.     Print counter 
  6. Next 
  7. WaitKey