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

  1. ;demo03-02.bb - Counts backwards using step amounts
  2. ;start counter at 5 and loop till 0 by -1.2
  3. For counter# = 5.0 To 0.0 Step -1.2
  4.     ;Print value of counter
  5.     Print counter
  6. Next
  7. WaitKey