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

  1. ;demo02-07.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.  
  6.  
  7. ;if exactly 18, write that voting is legal
  8. If age = 18 Then 
  9.     Print "You can now vote."    
  10. ;if older tha 18, write out that voting has been legal for a while
  11. Else If age > 18 
  12.     Print "You've been able to vote for a while."
  13. ;if younger than 18, write out that voting is illegal.
  14. Else If age < 18 
  15.     Print "Sorry, you will have to wait a few years to vote."
  16. EndIf
  17. WaitKey