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

  1. ;demo02-06.bb - Tests if you are old enough to vote
  2. age = Input$("How old are you? ") ;how old is user
  3. If age >= 18 Then
  4.     Print "You are legally allowed to vote!" ;if older or equal to 18
  5.  
  6. Else Print "Sorry, you need To be a few years older." ;if younger than 18
  7. EndIf
  8. WaitKey