1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 22:28:26 +03:00
mal/impls/common-lisp/step4_if_fn_do.asd

35 lines
951 B
Plaintext
Raw Normal View History

2016-10-29 16:33:46 +03:00
#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
2016-11-20 22:36:05 +03:00
(ql:quickload :uiop :silent t)
(ql:quickload :cl-ppcre :silent t)
(ql:quickload :genhash :silent t)
(ql:quickload :alexandria :silent t)
2016-10-29 16:33:46 +03:00
#-mkcl (ql:quickload :cl-readline :silent t)
#+mkcl (load "fake-readline.lisp")
2016-10-29 16:33:46 +03:00
(defpackage #:mal-asd
(:use :cl :asdf))
(in-package :mal-asd)
(defsystem "step4_if_fn_do"
:name "MAL"
:version "1.0"
:author "Iqbal Ansari"
:description "Implementation of step 4 of MAL in Common Lisp"
:serial t
:components ((:file "utils")
(:file "types")
(:file "env")
(:file "reader")
(:file "printer")
(:file "core")
(:file "step4_if_fn_do"))
:depends-on (:uiop :cl-readline :cl-ppcre :genhash)
:pathname "src/")