Skip to content

Instantly share code, notes, and snippets.

@zeptometer
Created January 16, 2013 01:29
Show Gist options
  • Select an option

  • Save zeptometer/4543832 to your computer and use it in GitHub Desktop.

Select an option

Save zeptometer/4543832 to your computer and use it in GitHub Desktop.
(defpackage :my-package
(:use :common-lisp
:iterate)
(:export :my-func1
:my-func2))
(defun my-func1 (x y)
(+ x y))
(defun my-func2 (list)
(iter (for v in list)
(print v)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment