;; -*- Mode:Common-Lisp;Package:mma; Base:10 -*- ;(defpackage :mma (:nicknames "MockMMA") (:use :common-lisp :asdf)) (in-package :mma) (defsystem "mockmma" :description "Mockmma: a lisp-language system with a syntax resembling Mathematica." :version "4.0" :author "Richard Fateman <fateman@cs.berkeley.edu> plus students" :license "copyright Richard Fateman, BSD license" :components ((:file "mma") #-:allegro (:file "uconsalt") #+:allegro (:file "ucons1") (:file "parser") (:file "stack1") (:file "disp1") (:file "poly") (:file "rat1") (:file "simp1") (:file "pf") (:file "eval") (:file "newmatch") (:file "diffrat") (:file "morefuns") (:file "function") (:file "mma2maxfun") (:file "batch") ))