diff --git a/src/beowulf/host.clj b/src/beowulf/host.clj index fcd71fd..042dc8f 100644 --- a/src/beowulf/host.clj +++ b/src/beowulf/host.clj @@ -3,3 +3,36 @@ be) implemented in Lisp 1.5, which therefore need to be implemented in the host language, in this case Clojure.") +;; these are CANDIDATES to be host-implemented. only a subset of them MUST be. +;; those which can be implemented in Lisp should be, since that aids +;; portability. + +;; RPLACA + +;; RPLACD + +;; PLUS + +;; MINUS + +;; DIFFERENCE + +;; QUOTIENT + +;; REMAINDER + +;; ADD1 + +;; SUB1 + +;; MAX + +;; MIN + +;; RECIP + +;; FIXP + +;; NUMBERP + +;;