/home/dmaslows/NetBeansProjects/CS1/src/mmw/TwoFigureMinuetThing.java
 1 /*
 2  * Ten note line created by joining two JSB minuet figures.
 3  */
 4 package mmw;
 5 
 6 import note.SNote;
 7 
 8 /**
 9  *
10  * @author dmaslows
11  */
12 public class TwoFigureMinuetThing {
13 
14     /**
15      * @param args the command line arguments
16      */
17     public static void main(String[] args) {
18        SNote sn = new SNote();
19        sn.text();
20        sn.play();
21        sn.rp(3);
22        sn.s2();
23        sn.play();
24        sn.rp(); 
25        sn.play();
26        sn.rp();
27        sn.play();
28        sn.rp();
29        sn.play();
30        sn.rp();
31        sn.play();
32        sn.lp();
33        sn.play();
34        sn.lp();
35        sn.play();
36        sn.rp();
37        sn.play();
38        sn.rp();
39        sn.x2();
40        sn.play();
41        
42     }
43     
44 }
45