Skip to content

0.7.12

Compare
Choose a tag to compare
@ddj231 ddj231 released this 02 Feb 19:13
· 31 commits to master since this release

New Features

  • adds choose expressions. This allows you to choose a random subset of notes from a notelist.

The syntax is: choose digit from notelist

Below is an example program that uses this feature:

start
    save list = E2, G2, B2
    save note = choose 1 from list
    play note for 1b
finish

Bug fixes

  • allows digit expressions that begin with digits (no just enclosed in parens) to be used wherever a digit is expected.