home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / misc / mas / mashelp / masspec.def < prev    next >
Encoding:
Modula Definition  |  1991-03-18  |  294 b   |  20 lines

  1.  
  2. DEFINITION MODULE MASSPEC;
  3.  
  4. (* MAS Sepcification Definition Module. *)
  5.  
  6.  
  7. (* Import lists and declarations. *)
  8.  
  9. FROM MASSTOR IMPORT LIST; 
  10.  
  11.  
  12. PROCEDURE EVALUATE(X: LIST; VAR ENV: LIST): LIST;
  13. (*Lisp evaluator. X is an S-expression, ENV is an environment. *)
  14.  
  15.  
  16. END MASSPEC.
  17.  
  18.  
  19.  
  20.