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

  1. ;demo02-04.bb asks user's name and shows it
  2. ;get the user's name
  3. name$ = Input$("Hi! May I know your name please? ") 
  4. Print "Hi " + name$ + "."
  5. WaitKey