home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / input / exam01.dba next >
Encoding:
Text File  |  1999-08-25  |  446 b   |  18 lines

  1. Rem * Title  : Simple Input
  2. Rem * Author : DBS-LB
  3. Rem * Date   : 1st Sept 99
  4. rem ==========================================
  5. rem DARK BASIC EXAMPLE PROGRAM 1
  6. rem ==========================================
  7. rem This program will demonstrate simple input
  8. rem ------------------------------------------
  9.  
  10. rem Ask the user for their name
  11. input "enter your name>";name$
  12.  
  13. rem Respond to user
  14. print "hello ";name$
  15.  
  16. rem End the program
  17. end
  18.