/home/ecuevas/NetBeansProjects/CS1/src/mmw/Dorothy.java
 1 /*
 2  * Name that tune!
 3  */
 4 package mmw;
 5 
 6 import note.SNote;
 7 
 8 /**
 9  *
10  * @author ecuevas
11  */
12 public class Dorothy {
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();
20         note.x2(); note.play();
21         note.rp(7); note.play();
22         note.s2(); note.lp(); note.play(); 
23         note.lp(2); note.s2(); note.play();
24         note.rp(); note.play();
25         note.x2(); note.rp(); note.play();
26         note.rp(); note.play();
27         System.out.println();
28     }
29     
30 }
31     
32 
33