Created
March 25, 2016 03:34
-
-
Save nicoder/ce86d61f5dc62969b9d2 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 | |
sleep 1 | |
end | |
live_loop :a do | |
# sync :m | |
play 48 | |
sleep 1 | |
end | |
live_loop :b do | |
# sync :m | |
note = (knit chord(:C3), 4, chord(:G3), 2, chord(:F3), 2).tick | |
2.times do | |
sleep 0.25 | |
play note, attack: 0, release: 0.5 | |
end | |
sleep 0.5 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment