Clojure overtone (on command)

What does at

clojure really do? I've seen this example on the internet creating a loop for an overtone and can't get the value at

:

(defn looper [nome sound]
  (let [beat (nome)]
     (at (nome beat) (sound))
      (apply-at (nome (inc beat)) looper nome sound [])))`

      

+3


source to share


1 answer


The command at

is part of the overtone, not Clojure.

The wrapping text shows that this is a temporary function:

https://github.com/overtone/overtone/raw/master/docs/cheatsheet/overtone-cheat-sheet.pdf



Also you can look at both github and wiki:

https://github.com/overtone/overtone https://github.com/overtone/overtone/wiki http://overtone.github.io/

+5


source







All Articles