;;; Alef Lazily Evaluates Functions ;;; (C) 2008-2009 Dr. Gergo ERDI (cl:defpackage :hu.erdi.gergo.alef (:nicknames :alef) (:use :common-lisp :alexandria) (:documentation "Alef Lazily Evaluates Functions") (:export #:*library* #:parse-and-run #:compile-program ;; Alef language tokens and identifiers from the library ;; Note: these are only needed until we finally get IO #:int #:define #:define/override #:declare/virtual #:*library* #:bool #:true #:false #:show #:take #:drop #:filter #:concat)) (in-package :alef) (declaim (optimize (debug 3) (safety 3) (speed 0)))