Skip to content

Instantly share code, notes, and snippets.

@ssaavedra
Last active April 25, 2016 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaavedra/28992ec977107101cee3a6ec3af6a66c to your computer and use it in GitHub Desktop.
Save ssaavedra/28992ec977107101cee3a6ec3af6a66c to your computer and use it in GitHub Desktop.
(defpackage :mypackage
(:use)
(:export :let))
(defpackage :mypackage.impl
(:use :cl))
(in-package :mypackage.impl)
(defmacro mypackage:let (a)
`(print (list "Hello world" , a)))
(defpackage :mypackage
(:export :let))
(defpackage :mypackage.impl
(:use :cl))
(in-package :mypackage.impl)
(defmacro mypackage:let (a)
`(print (list "Hello world" ,a)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment