Skip to content

Instantly share code, notes, and snippets.

@darinwilson
darinwilson / sonic_pi_examples.txt
Last active May 18, 2024 07:48
Sonic Pi Examples
##############################################
## Example 1 - play a note
play 60
##############################################
## Example 2 - play 4 random notes
4.times do
play rrand_i(60, 90)
sleep 0.5