home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / source / test.seq < prev    next >
Text File  |  1991-04-25  |  551b  |  22 lines

  1.  
  2. \ FLOAD INC80.SEQ       \ the entire library word list
  3.  
  4. 3 constant three        INCLUDEWORD THREE
  5. 4 constant four         INCLUDEWORD FOUR
  6.  
  7. : MAIN          ( -- )
  8.                 three four + . ;
  9.  
  10. \s      STOP HERE
  11.  
  12.   You might also try the following definition for MAIN:
  13.  
  14. : MAIN          ( -- )
  15.                 three four + . ;
  16.  
  17.   You will be amazed at how much larger the generated image gets.
  18.  
  19.   You can also remove the comment from line 2 and perform the FLOAD to
  20. see how TCOM80 will generate a full Forth system plus MAIN.
  21.  
  22.