Skip to content

Instantly share code, notes, and snippets.

@y2q-actionman
Created December 13, 2012 13:03
Show Gist options
  • Save y2q-actionman/4276269 to your computer and use it in GitHub Desktop.
Save y2q-actionman/4276269 to your computer and use it in GitHub Desktop.
example2 : DOLIST マクロ
(in-package :cl-user)
;; 表示してまわったり
(dolist (p '(1 2 3))
(print p))
;; 和をとってみたり
(let ((accum 0))
(dolist (p '(1 2 3 4 5))
(incf accum p))
(print accum))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment