ThreeFigureMinuetThing.java
package mmw;

import composer.SComposer;
import note.SNote;

public class ThreeFigureMinuetThing {

        public static void main(String[] args) {

            //SComposer sc = new SComposer();
            SNote note = new SNote();

            //first sequence
            note.text();
            note.play();
            note.lowerPitch();
            note.play();
            note.lowerPitch();
            note.play();
            note.rp();
            note.raisePitch();//back at c now

           //second sequence
            System.out.println('\n');
            note.s2();
            note.play();
            note.lp();
            note.play();
            note.lp();
            note.play();
            note.rp();
            note.play();
            note.rp(); note.x2();
            note.play();

            //second sequence
            System.out.println('\n');
            note.x3();
            note.play();





            //sc.text();
            //sc.mms_33_JSB_M2(); //3 notes in 3 beats
            //sc.mms_35_JSB_M13(); //5 notes in 3 beats
            //sc.mms_31_JSB_M1(); //1 note in 3 beats
        }
    }