Created
October 31, 2014 12:19
-
-
Save josephwilk/c6c9ab68e65810a0844f 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 :timer do | |
sleep 1 | |
sleep 1 | |
end | |
live_loop :drummer do | |
sync :timer | |
play degree(1, :A2, :major) | |
sleep 2 | |
end | |
live_loop :beeping do | |
sync :timer | |
with_fx :echo do | |
with_fx :reverb do | |
play 60 | |
sleep 2 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment