Skip to content

Instantly share code, notes, and snippets.

View lucasrafaldini's full-sized avatar
🕶️
Studying Rust, Schyzoanalisys and Music Theory

Lucas Rafaldini lucasrafaldini

🕶️
Studying Rust, Schyzoanalisys and Music Theory
View GitHub Profile
@darinwilson
darinwilson / sonic_pi_examples.txt
Last active March 13, 2025 03:35
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