Created
December 13, 2012 13:03
-
-
Save y2q-actionman/4276269 to your computer and use it in GitHub Desktop.
example2 : DOLIST マクロ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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