Created
April 1, 2016 17:08
-
-
Save mmcdaris/cff099d306e4cc34ffaecdbbbc6a65ae to your computer and use it in GitHub Desktop.
silly sonic pi tune! :D
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
# Welcome to Sonic Pi v2.9 | |
wait = 0.25 | |
a = wait * 0.5 | |
r = a | |
d = a * 0.5 | |
s = d | |
live_loop :flibble do | |
use_synth :tri | |
play :f, | |
attack: a, | |
sustain: s, | |
release: r | |
sleep wait | |
play :c, | |
sustain: s, | |
release: r | |
sleep wait | |
play :d, | |
attack: a, | |
sustain: s, | |
release: r | |
sleep wait | |
play :c, | |
sustain: s, | |
release: r | |
sleep wait | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment