home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / tutor / l1p010 next >
Text File  |  1990-05-16  |  3KB  |  60 lines

  1.        ╔═════════════════════════════════════════════════════╗
  2.        ║ Lesson 1 Part 1.0 F-PC 3.5 Tutorial by Jack Brown   ║
  3.        ╚═════════════════════════════════════════════════════╝
  4.  
  5. We begin with the assumption that you have installed F-PC V 3.5 on your
  6. C: hard disk using the install program that comes on the distribution
  7. disk.  Earlier versions of this tutorial gave instructions for
  8. installation on floppy disks but this time round we assume that the
  9. price of hard disks has reached the level that the majority of you can
  10. afford.  You can down load F-PC 3.5 from your any of the Forth-Net
  11. bulletin boards.  Ask you local sysop for the file names.
  12.  
  13.               ┌───────────────────────────────────┐
  14.               │ Installation / Configuration TIP  │
  15.               └───────────────────────────────────┘
  16.  
  17. We have specified an additional C:\WORK sub directory in F-PC's File
  18. search path that you are permitted to edit during Installation or
  19. reconfirmation.  We keep all our own programs and examples in this WORK
  20. sub directory so they do not get lost amongst all F-PC's source files.
  21.  
  22. You can still do this even if you have already installed F-PC 3.5 by
  23. typing INSTALL again and choosing the reconfiguration option.  An
  24. alternate way to do this without running the INSTALL is to use the
  25. .FPATH  FPATH and FPATH+ word set.  .FPATH will allow you to see the
  26. current Forth Path searched for source ( *.SEQ ) and help ( *.HLP )
  27. files.  FPATH <new sub directory paths> will allow you to completely
  28. redefine the current Forth Path, and FPATH+ <additional path> will allow
  29. you to extend the current Forth Path.  To add C:\WORK to the current
  30. Forth Path and save the system you would type the following at F-PC's
  31. ok prompt.
  32.  
  33. FPATH+ C:\WORK <enter>  ok
  34. FSAVE  F.EXE   <enter>  ok
  35. BYE <enter>
  36.  
  37. For some of you the first exercises may seem very simple but I am going
  38. to assume that you have been doing very little experimentation so that
  39. this introductory material will always be useful to others who are about
  40. to begin on their Forth adventure.
  41.  
  42.                ┌────────────────────────────────┐
  43.                │  Getting In and Out of Forth   │
  44.                └────────────────────────────────┘
  45.  
  46. First make the current sub directory C:\FPC and type F <enter> to start
  47. F-PC ( <enter> means press the "enter" key ).  If you like you could put
  48. the following commands in a file called  F.BAT and place it in the C:\
  49. root directory.
  50.  
  51. C:                 \    Place these commands in a file
  52. CD FPC              \   called  F.BAT   Then you can just
  53. F                   /   type  F  while in the C:\ root directory
  54. CD \               /    to start F-PC
  55.  
  56. ┌──────────────────────────────────┐
  57. │ Please Move to Lesson 1 Part 1.5 │
  58. └──────────────────────────────────┘
  59.  
  60.