home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming for Teens (2nd Edition) / 3DGPFT2E.iso / Source / Chapter02 / demo02-05.bb < prev    next >
Encoding:
Text File  |  2009-01-21  |  306 b   |  10 lines

  1. ;demo02-05.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. ;Wait five seconds
  10. Delay 5000