Skip to content

Instantly share code, notes, and snippets.

@mmcdaris
Created April 1, 2016 17:08
Show Gist options
  • Save mmcdaris/cff099d306e4cc34ffaecdbbbc6a65ae to your computer and use it in GitHub Desktop.
Save mmcdaris/cff099d306e4cc34ffaecdbbbc6a65ae to your computer and use it in GitHub Desktop.
silly sonic pi tune! :D
# 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