home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / sampler / 02 / parser / i4lisp.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1988-09-06  |  361 b   |  18 lines

  1. {I4LISP.PAS}
  2. {
  3. Description:  Program to demonstrate parsing of a LISP program that
  4.               calculates the value of (a + b * c).
  5.  
  6. Author:       Karl Gerhard
  7. Date:         9/30/87
  8. Application:  IBM PC and compatibles
  9. }
  10.  
  11. (/ 35 jim)
  12. (/ 34 john)
  13. (+ a (* (+ c d) (- a d)))
  14.  
  15. (defun trial (one two)  (+ a b)  )
  16. (defun demo () (+ 3 4) (* a d) )
  17. 
  18.