ThreeFigureMinuetThing.java
/* 
*Make it go (C,1) \ (B,1) \ (A,1) / (C,1/2) \ (B,1/2) \ (A,1/2) / (B,1/2) / (C,1) (C,3) 
 */
package mmw;

import note.SNote;

public class ThreeFigureMinuetThing {
    public static void main(String[] args) {
        SNote note = new SNote();
        note.text();
        note.play();
        note.lp(); note.play();
        note.lp(); note.play();
        note.rp(2); note.s2(); note.play();
        note.lp(); note.play();
        note.lp(); note.play();
        note.rp(); note.play();
        note.rp();note.x2();note.play();
        note.x3();note.play();
    }
}