/home/dmaslows/NetBeansProjects/CS1/src/mmw/Dorothy.java
 1 
 2 /*
 3  * Name that tune!
 4  */
 5 package mmw;
 6 
 7 import note.SNote;
 8 
 9 /**
10  *
11  * @author blue
12  */
13 public class Dorothy {
14 
15     /**
16      * @param args the command line arguments
17      */
18     public static void main(String[] args) {
19         SNote note = new SNote();
20         note.text();
21         note.x2(); note.play();
22         note.rp(7); note.play();
23         note.s2(); note.lp(); note.play();
24         note.lp(2); note.s2(); note.play();
25         note.rp(); note.play();
26         note.x2(); note.rp(); note.play();
27         note.rp(); note.play();
28         System.out.println();
29     }
30     
31 }
32