532727b7d1
Additionally removed wierd behaviour with Interpreter::play where empty chords were played as default length. Don't know why this was introduced
15 lines
222 B
Plaintext
15 lines
222 B
Plaintext
hand1_pool := (
|
|
chord g#3 g4,
|
|
chord d#3 d4,
|
|
chord g3 g#4,
|
|
chord d3 d#4,
|
|
),
|
|
|
|
hand2_pool := (d8, d#8, g8, g#8, d9, d#9),
|
|
|
|
play {
|
|
while true ((pick hand1_pool) (pick hn dhn)),
|
|
while true ((pick hand2_pool) (1/64))
|
|
}
|
|
|