(in-package :cl-user) (defpackage #:hu.erdi.gergo.alef.system (:use :common-lisp :asdf)) (in-package #:hu.erdi.gergo.alef.system) (defsystem :alef :description "Alef Lazily Evaluates Functions: Interpreter and compiler for a simple, lazy functional language" :author ("Gergő Érdi ") :depends-on (:alexandria) :components ((:file "package") (:file "util") (:file "typedesc") (:file "typecalc-util") (:file "gnode") (:file "pnode") (:file "symbol-table") (:file "registry") (:file "native") (:file "typecalc-error") (:file "typecalc-resolve") (:file "typecalc") (:file "pnode-parse") (:file "gnode-parse") (:file "parse") (:file "xform") (:file "library") (:file "csharp-writer") (:file "csharp-unparser") (:file "csharp-compiler")))