home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / flow / exam11.dba < prev    next >
Encoding:
Text File  |  2000-04-09  |  1.0 KB  |  39 lines

  1. Rem * Title  : REMARK Commands
  2. Rem * Author : DBS-MB
  3. Rem * Date   : 1st August 99
  4. rem ===========================================================
  5. rem DARK BASIC EXAMPLE PROGRAM 11
  6. rem ===========================================================
  7. rem This program will show you how to use the rem command
  8. rem -----------------------------------------------------------
  9.  
  10. rem Set the ink to white and paper color to black 
  11. ink rgb(244,214,210),1
  12.  
  13. rem Put your comments about your program after the REM
  14. rem the computer will not compile any thing it finds on that line
  15.  
  16. print "THE COMPUTER WILL PRINT THIS"
  17. print "AND THIS TOO"
  18.  
  19. rem To block out more than one line use these commands
  20.  
  21. rem Start of block  
  22. remstart
  23.  
  24. print "TO BLOCK OUT PART OF YOUR PROGRAM USE REMSTART AND REMEND"
  25. print "THE COMPUTER WILL NOT SEE ANY OF THIS"
  26. print "try removing remstart and remend" 
  27.  
  28. rem End of block
  29. remend     
  30.  
  31. print "AND THIS LINE"    
  32.     
  33. print "please press spacekey"
  34. suspend for key
  35.  
  36. rem End of program
  37. end
  38.     
  39.