twominuetfigures.java
package mmw;
import note.SNote;

public class twominuetfigures {
    public static void main(String[] args){
        SNote note = new SNote();
        note.text();
        note.play();
        note.rp(3); note.s2();note.play();
        note.rp(); note.play();
        note.lp(6);note.play();
        note.rp();note.play();
        note.rp(); note.play();
        note.lp(); note.play();
        note.lp(); note.play();
        note.rp(); note.play();
        note.x2(); note.rp(); note.play();


    }

}