Created
September 10, 2019 11:24
-
-
Save patsch/2a191765ecc176f6866c1fde8a189b1c to your computer and use it in GitHub Desktop.
Alle meine Entchen
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 v3.1 | |
# A german children song and the very first thing any german child attempts when learning to play the piano | |
use_bpm 180 | |
[ :c, :d, :e, :f, :g ].each do |key| | |
play key | |
sleep 1 | |
end | |
sleep 1 | |
play :g | |
sleep 2 | |
2.times do | |
4.times do | |
play :a | |
sleep 1 | |
end | |
play :g | |
sleep 3 | |
end | |
4.times do | |
play :f | |
sleep 1 | |
end | |
play :e | |
sleep 2 | |
play :e | |
sleep 2 | |
4.times do | |
play :g | |
sleep 1 | |
end | |
play :c | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment