This change allows you to sequence rhythmic subdivisions using recursive lists
For example:
If [2,4,6,8] plays 4 quarter notes, [[2,6],4,6,8] will play 2 8th notes followed by 3 quarter notes, adding up to the same measure.
Additionally, this change allows you to sequence silences/rest notes. This can be done by using 0 instead of a note.
This change allows you to sequence rhythmic subdivisions using recursive lists For example: If
[2,4,6,8]
plays 4 quarter notes,[[2,6],4,6,8]
will play 2 8th notes followed by 3 quarter notes, adding up to the same measure.Additionally, this change allows you to sequence silences/rest notes. This can be done by using
0
instead of a note.