ThreeFigureMinuetThing.java
1    /* 
2     * send halp plz sept 16 
3     */
4    package mmw;
5    import note.SNote;
6    
7    public class ThreeFigureMinuetThing {
8        public static void main(String[] args) {
9            SNote note = new SNote();
10           note.text();
11           note.play(); note.lp(); note.play(); note.lp(); note.play(); note.rp(2);
12           note.s2(); note.play(); note.lp(); note.play(); note.lp(); note.play(); note.rp(); note.play();
13           note.rp(); note.x2(); note.play(); note.x3(); note.play();
14           note.untext();
15   
16       }
17   }
18