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

  1. ;demo02-07.bb Tests if you are old enough to vote
  2. age = Input$("How old are you? ")
  3. If age = 18 Then
  4.        Print "You can now vote."    
  5. Else If age > 18 
  6.        Print "You've been able to vote for a while."
  7. Else If age < 18 
  8.        Print "Sorry, you will have to wait a few years to vote."
  9. EndIf
  10. WaitKey