/home/evankemp/NetBeansProjects/CS1/src/mmw/TwoFigureMinuetThing.java
 1 /*
 2  * Program to play two of the Bach minuet figures 
 3  * without using any SComposer object in the Modular Melody World.
 4  */
 5 package mmw;
 6 
 7 import note.SNote;
 8 
 9 /**
10  *
11  * @author evankemp
12  */
13 public class TwoFigureMinuetThing {
14 
15     /**
16      * @param args the command line arguments
17      */
18     public static void main(String[] args) {
19         SNote a = new SNote();
20         a.text();
21         a.play();
22         a.s2();a.rp(3);a.play();
23         a.rp();a.play();
24         a.lp(6);a.play();
25         a.rp();a.play();
26         a.rp();a.play();
27         a.lp();a.play();
28         a.lp();a.play();
29         a.rp();a.play();
30         a.x2();a.rp();a.play();
31     }
32     
33 }
34