home *** CD-ROM | disk | FTP | other *** search
/ Game Programming for Teens / GameProgrammingForTeens.iso / Source / chapter02 / demo02-03.bb < prev    next >
Encoding:
Text File  |  2003-04-06  |  231 b   |  10 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. WaitKey
  10.