home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Game Programming for Teens (2nd Edition)
/
3DGPFT2E.iso
/
Source
/
Chapter03
/
demo03-01.bb
next >
Wrap
Text File
|
2009-01-20
|
200b
|
9 lines
;demo03-01.bb - counts from 1 to 10
;start counter at one and loop till 10
For counter = 1 To 10
;Print whatever counter is equal to
Print counter
Next
;Delay for five seconds
Delay 5000