package.lisp @ 7d0cd39ee703

Don't shit the bed when `load`ing a file with errors

Refactored the evaluator a bit so the file loading middleware can just use the
same evaluation machinery and get all the error handling and stream shuttling
for free.
author Steve Losh <steve@stevelosh.com>
date Sat, 09 Apr 2016 21:45:42 +0000
parents c24e85a0b4c0
children f36b8fd3e9dd
;;;; package.lisp

(defpackage #:nrepl
  (:use #:cl)
  (:import-from :ppcre
                :regex-replace)
  (:export #:start-server
           #:stop-server))