2016-11-02 10:21:14 +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-readline :silent t)
|
|
|
|
(ql:quickload :cl-ppcre :silent t)
|
|
|
|
(ql:quickload :genhash :silent t)
|
2016-11-02 10:21:14 +03:00
|
|
|
|
|
|
|
(defpackage #:mal-asd
|
|
|
|
(:use :cl :asdf))
|
|
|
|
|
|
|
|
(in-package :mal-asd)
|
|
|
|
|
|
|
|
(defsystem "step6_file"
|
|
|
|
:name "MAL"
|
|
|
|
:version "1.0"
|
|
|
|
:author "Iqbal Ansari"
|
|
|
|
:description "Implementation of step 6 of MAL in Common Lisp"
|
|
|
|
:serial t
|
|
|
|
:components ((:file "utils")
|
|
|
|
(:file "types")
|
|
|
|
(:file "env")
|
|
|
|
(:file "reader")
|
|
|
|
(:file "printer")
|
|
|
|
(:file "core")
|
|
|
|
(:file "step6_file"))
|
|
|
|
:depends-on (:uiop :cl-readline :cl-ppcre :genhash))
|