Created
April 3, 2016 05:59
-
-
Save nicoder/3d5d301f9f595ade966bd1985fd99b32 to your computer and use it in GitHub Desktop.
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
live_loop :m do | |
sample :elec_chime | |
sleep 1 | |
end | |
live_loop :a do | |
#sync :m | |
chords = (knit | |
chord(:a, :minor), 4, | |
chord(:g, :major), 4, | |
chord(:a, :minor), 4, | |
chord(:f, :major), 4 | |
) | |
play chords.tick, release: 2 | |
sleep 2 | |
end | |
live_loop :b do | |
#sync :m | |
play 60, release: 0.2 | |
play 72, release: 0.2 | |
sleep 0.125 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment