home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Programming for Teens
/
GameProgrammingForTeens.iso
/
Source
/
chapter03
/
demo03-04.bb
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-04-06
|
186 b
|
7 lines
;demo03-04.bb - Waits for a key and then exits
Print "This program is worthless."
Print "Press escape to exit."
;Wait until user presses 1 to Escape
While Not KeyDown(1)
Wend
End