Hi guys,
Starting to wrap my head around the wonderful world of clojure and SC, and stumbled upon a bug in the example code:
```
(defn foo-pause
[]
(dotimes [i 10]
(foo (* i 220) 1)
(Thread/sleep 300)))
```
This will output a frequency of 0 at the first iteration. Yikes... Fix:
```
(defn foo-pause
[basefreq]
(dotimes [i 10]
(foo (+ basefreq (* i basefreq)) 1)
(println "foo-pause: " i)
(Thread/sleep 300)))
(foo-pause 220)
```
or something to that effect? No idea if this would qualify as idiomatic clojure, though...