home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / tutor / l1p040 < prev    next >
Text File  |  1990-05-16  |  2KB  |  65 lines

  1.        ╔════════════════════════════════════════════════════════╗
  2.        ║   Lesson 1 Part 4.0  F-PC 3.5 Tutorial by Jack Brown   ║
  3.        ╚════════════════════════════════════════════════════════╝
  4.  
  5. Hi...  Enter  F-PC we are about to study...
  6.  
  7.               ┌──────────────────────────────────────────┐
  8.               │  Two More Extremely Useful System Words  │
  9.               └──────────────────────────────────────────┘
  10.  
  11.  
  12. F1 or HELP {name}   Get help information on the word {name}.
  13.  
  14. V  or VIEW {name}   Look at the source code for the word {name}.
  15.  
  16. Try:   HELP WORDS <enter>
  17.  
  18. You should find some new ways to scan the Forth word dictionary from the
  19. information that is displayed.  Try some of the suggestions illustrated.
  20.  
  21. ******  DO IT NOW  ******
  22.  
  23. F-PC is unique in that you get all of the source code for the Forth
  24. language with the system.  If you want to look at the actual source code
  25. for a word just type  VIEW {word}  <enter> Look at the source code for
  26. WORDS by typing:
  27.  
  28. VIEW WORDS <enter>
  29.  
  30. ╓────────────────╖
  31. ║  Problem  1.1  ║
  32. ╙────────────────╜
  33.  
  34. Use the ideas presented in the first three parts of lesson 1 to
  35. construct an original and useful data base. (Not a phone list)
  36.  
  37. For example:
  38.  
  39. : C  ." 2.997930E8 m/s  The speed of light." ;
  40.  
  41. : N  ." 6.02486E26 /(kg mole) Avogadro's number." ;
  42.  
  43. : E  ." 1.60206E-19 C The electronic charge." ;
  44.  
  45. : h  ." 6.62517E-34 J s Planck's constant." ;
  46.  
  47. There will be a reward for the most useful data base!
  48. Upload yours here please.  We're collecting them!
  49.  
  50.           ┌─────────────────────────────────────────────┐
  51.           │   Instructions on printing out the manual.  │
  52.           └─────────────────────────────────────────────┘
  53.  
  54. During the F-PC installation process the F-PC instruction manual was
  55. unpacked into the sub directory C:\FPC\HLP .  If you haven't already
  56. done so print out the instruction manual as soon as possible.  It
  57. contains much valuable information about F-PC.  You will also find some
  58. useful *.TXT files in the C:\FPC directory that are used by the HELP
  59. system. It might be a good idea to print these out for reference too.
  60.  
  61. ┌─────────────────────────────────────┐
  62. │   Please move to Lesson 1 Part 5.0  │
  63. └─────────────────────────────────────┘
  64.  
  65.