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

  1. ;demo02-10.bb - Demonstrates use of Goto
  2. .label
  3. Print "Hello"
  4. selection = Input("Enter 1 if you want me to repeat 'Hello' ==> ")
  5. If (selection = 1)
  6.        Goto label
  7. EndIf
  8. End