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

  1. ;demo03-04.bb - Waits for a key and then exits
  2. Print "This program is worthless."
  3. Print "Press escape to exit."
  4. ;Wait until user presses 1 to Escape
  5. While Not KeyDown(1) 
  6. Wend 
  7. End