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

  1. ;demo03-05.bb  - Closes program after player presses ESC.
  2. Print "Why did you open this progam?"
  3. Repeat 
  4.     Print "Press Esc to exit."
  5.     ;wait a sec
  6.     Delay 1000 
  7. ;repeat until user hits esc
  8. Until KeyHit(1) 
  9. Print "Program is ending."