/home/mbilodea/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 mbilodea
11  */
12 public class TwoFigureMinuetThing {
13 
14     /**
15      * @param args the command line arguments
16      */
17     public static void main(String[] args) {
18         SNote note = new SNote();
19         note.text(); note.play();
20         note.rp(3); note.s2(); note.play();
21         note.rp(1); note.play();
22         note.rp(1); note.play();
23         note.rp(1); note.play();
24         note.rp(1); note.play();
25         note.lp(1); note.play();
26         note.lp(1); note.play();
27         note.rp(1); note.play();
28         note.x2(); note.lp(6); note.play();
29     }
30     
31 }
32