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

  1. ;demo02-03.bb - adds strings together
  2. string1$ = "I "
  3. string2$ = "like "
  4. string3$ = "programming!"
  5. ;concatenate the strings 
  6. completestring$ = string1$ + string2$ + string3$ 
  7. ;print 'em out
  8. Print completestring$ 
  9. Delay 5000