TwoFigureMinuetThing.java
package mmw;
import composer.SComposer;
import note.SNote;

public class TwoFigureMinuetThing {
    public static void main(String[] args) {
        SComposer sc = new SComposer();
        /* sc.text(); 
        sc.mms_35_JSB_M9(); 
        sc.mms_35_JSB_M13(); 
 
     (C,1) \ (F,1/2) / (G,1/2) / (A,1/2) / (B,1/2) / (C,1/2) \ (B,1/2) \ (A,1/2) / (B,1/2) / (C,1) 
 
         */



       SNote note = new SNote();
        note.text();
        note.play(); note.rp(3); note.s2(); note.play();
        note.rp();note.play();
        note.rp();note.play();
        note.rp();note.play();
        note.rp();note.play();
        note.lp();note.play();
        note.lp();note.play();
        note.rp();note.play();
        note.rp();
        note.x2();note.play();
        System.out.println();

    }

}