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

  1. ;demo02-04.bb - Tests if you are old enough to vote
  2.  
  3. ;Find out how old the user is
  4. age = Input$("How old are you? ") 
  5. ;if older or equal to 18, print out confirmation that user is allowed to vote.
  6. If age >= 18 Then 
  7.     Print "You are legally allowed to vote!"
  8. EndIf
  9. WaitKey