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

  1. ;demo02-06.bb - Tests if you are old enough to vote
  2.  
  3. ;Ask how old the user is
  4. age = Input$("How old are you? ")
  5.  
  6. ;if older or equal to 18 then let them vote
  7. If age >= 18 Then
  8.      Print "You are legally allowed to vote!" 
  9.  
  10. ;if younger than 18, do not let them vote
  11.  
  12. Else Print "Sorry, you need To be a few years older." 
  13. EndIf
  14.  
  15. ;Wait five seconds
  16. Delay 5000