Coverage report: /home/ellis/comp/core/core.lisp
Kind | Covered | All | % |
expression | 0 | 5 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; lisp/core.lisp --- CC Core Lisp
3
;; Top-level namespaces accessible to Core lisps.
8
(:use-reexport :std :log :io :obj :net :cry :parse :dat :cl-user :sb-ext :sb-debug))
10
(pushnew :core *features*)
12
;; (defun exclamation-mark-reader (stream inchar)
13
;; (declare (ignore inchar))
16
;; (defun question-mark-reader (stream inchar)
17
;; "Reader function for the #\? macro character in the :CORE readtable. Processes
18
;; a query from input STREAM."
19
;; (declare (ignore inchar)))
22
(:merge :modern :std :shell)
23
;; (:macro-char #\? #'question-mark-reader)
24
;; (:macro-char #\! #'exclamation-mark-reader)
27
(define-lisp-package :core)