Last active
March 25, 2016 10:49
-
-
Save lildata/0ee408d17fb007e0ae22 to your computer and use it in GitHub Desktop.
overtone 🎹 🎧
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (def nome (metronome 500)) | |
| (defn some-beat [nome] | |
| (let [beat (nome)] | |
| ; kick drum pattern | |
| (at (nome beat) (kick)) | |
| (at (nome (+ 5 beat)) (kick)) | |
| (at (nome (+ 7 beat)) (kick)) | |
| (apply-at (nome (+ 8 beat)) some-beat nome []))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment