Currently the dotimes macro requires its first argument to be a vector
for binding a variable to the number of times the body should be
executed. Inside the body, that variable is bound to the values from 0
to that number minus 1. How about changing this macro to also accept
an integer as the first argument instead of a binding vector for cases
where the number isn't needed in the body. For example,

(print "Santa says")
(dotimes 3 (print "Ho"))
(.flush *out*)

-- 
R. Mark Volkmann
Object Computing, Inc.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to