Search found 1 match
- Mon Feb 06, 2012 10:47 am
- Forum: The Lounge
- Topic: macro
- Replies: 1
- Views: 7332
macro
Hi everybody, I am he beginner in Lisp. One of my first aim is to do dotimes macro with DO loop. Can anybody help to to modify my code? This is it: (defmacro dotimes2 (lista &body body) (let ((second lista) 0) `(progn (do ((,(first lista) ,(second lista (2+ ,(first lista)))) ((>= ,(first lista) ...