3

在clojure中实际上做了什么at?我在互联网上看到了这个例子,为泛音制作了一个循环,但无法理解at

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

1 回答 1

5

at命令是泛音的一部分,而不是 Clojure。

泛音备忘单显示它是一个计时函数:

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

您也可以查看 github 和 wiki:

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

于 2015-06-22T22:18:37.407 回答