;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-User -*- ;;; This file is in the public domain. It is provided with ABSOLUTELY ;;; NO WARRANTY. (in-package :cl-user) (defpackage :new-let (:use :cl) (:shadow cl:let cl:cond) (:export #:let #:cond #:nlet #:bcond)) (defpackage :gmap (:use :cl) (:export #:gmap) (:import-from :new-let #:nlet #:bcond))