home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / DOS_GG / COMCAT / VOL35.ARJ / VOL3510 < prev    next >
Text File  |  1992-01-07  |  4KB  |  79 lines

  1.       
  2.  Volume 3510 - Released march 1988 -  Abstract (C) ProgrammaTheek
  3.  
  4. ProgrammaTheek volume 3510
  5.  
  6. gelijk aan PC/SIG no. 510, PCgg 402
  7.  
  8. Titel:Visible Pascal compiler
  9.  
  10. Number Name            Size    Date    Comments
  11.        CATALOG  510     1792  08-22-87 Disk index
  12. 510.01 MANUAL   1      27008   8-08-85 User manual part 1 of 2 (27K, partly
  13.                                        corrupted)
  14. 510.02 MANUAL   2      51875  11-13-85 User manual part 2 of 2 (52K)
  15. 510.03 BOX               896   8-08-85 \
  16. 510.04 COLOR             512   8-08-85  \
  17. 510.05 FILEDEMO          896   8-08-85   \
  18. 510.06 FIRST1            640   8-08-85    \
  19. 510.07 INKEY             640   8-08-85     \
  20. 510.08 KEYDFINE          384   8-08-85      \
  21. 510.09 LISTER            768   8-08-85       \
  22. 510.10 MATH              640   8-08-85        \
  23. 510.11 MODESW            256   8-08-85         \
  24. 510.12 PATTERN          1152   8-08-85 sample programs
  25. 510.13 PRETTY2          7424   8-08-85         /
  26. 510.14 SECOND1           512   8-08-85        /
  27. 510.15 SOUNDS            384   8-08-85       /
  28. 510.16 SOUNDS2           640   8-08-85      /
  29. 510.17 STRINGS           512   8-08-85     /
  30. 510.18 TESTCASE          512   8-08-85    /
  31. 510.19 TURTLE           2176   8-08-85   /
  32. 510.20 WEATHER           640   8-08-85  /
  33. 510.21 WORDS             512   8-08-85 /
  34. 510.22 VOL3510  ABS     2048  08-22-87 Disk abstract
  35. 510.23 AUTOEXEC BAT      128   8-08-85 Program bootstart if system is on disk
  36. 510.24 EDIT     BAT      128   8-08-85 Batch file to start the editor
  37. 510.25 G        BAT      384   8-08-85 Batch file: how to start the program
  38. 510.26 GO       BAT      363   5-07-86 Printen of Help
  39. 510.27 PRINTMAN BAT      128   8-08-85 Batch file that prints the manual
  40. 510.28 RUN      BAT      384   8-08-85 Batch file to run a program
  41. 510.29 VISBUG   EXE    19584   8-08-85 Part of Compiler
  42. 510.30 VISED    EXE    20736   8-08-85 Part of Compiler
  43. 510.31 VISPAS   EXE    25600   8-08-85 Part of Compiler
  44. 510.32 ERR      TXT     8192   8-08-85 Text file containing error messages
  45.               34 File(s)    121856 bytes free
  46.  
  47.                           THE VISIBLE-PASCAL MANUAL
  48.  
  49. VISIBLE-PASCAL is a special version of Pascal, with the purpose  of giving the
  50. first-time Pascal programmer an easy time writing  and programming his or her
  51. first programs. Therefore, an easy  editor, fast and automatic program
  52. execution and running, and a  full symbolic debugger with the program operati-
  53. on and variable  values easily visible have been supplied at the expense of
  54. other  possible programming features. For example, Visible-Pascal is not  a
  55. complete implementation of Pascal; it does not generate programs that run as
  56. fast as possible; and it does not include such  advanced features as low level
  57. machine access and modular program  construction and linking. It is an
  58. adequate language to allow the  writing of interesting and significant
  59. programs, however. Disk  files can be read and written; strings are included;
  60. and the  various screen modes possible on the IBM-PC can be used, including
  61. the drawing of graphics in
  62. color.
  63.  
  64. To RUN a program you use the part of the Visible-Pascal system  called the
  65. DEBUGGER -- it helps you find and fix program bugs, or  errors. The debugger
  66. allows you to watch the operation of the  program as it runs, to see whether
  67. it does what you want it to.  The debugger allows you to step through a
  68. program, one statement  
  69. at a time, while watching the program listing to see what statement is being
  70. executed, and what the values of program variables  are. It also allows you to
  71. control how fast the program runs and  when it should stop, and allows you to
  72. look at the output of the  program (if it writes or draws on the screen) as
  73. well as the  information made available by the debugger. Using it is automa-
  74. tic; the Visible-Pascal compiler creates program files which,  when 'fed into'
  75. the debugger, automatically make the 'connections' required for all the above
  76. to happen.
  77.  
  78. Visible Pascal is not Turbo-Pascal compatible. Amongst others the  real data
  79. type is missing. No GOTO statement is implied to discourage this use!