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