I have a block of code that I need to execute in Clojure that looks like this:
(map function coll)
However, I need to delay the time interval between each subsequent function call. That is, I want to call the functionfirst element, then sleep for 10 seconds, then call with the second element, etc.
How can I do that?
Thanks in advance for your help.
source
share