Dorothy.java
1    
2    /* 
3    *Name that tune! 
4    */
5    
6    package mmw;
7    
8    import note.SNote;
9    
10   public class Dorothy {
11   
12       public static void main (String[] args){
13           SNote note = new SNote ();
14           note.text();
15           note.x2();note.play();
16           note.rp(7);note.play();
17           note.s2();note.lp();note.play();
18           note.lp(2);note.s2();note.play();
19           note.rp();note.play();
20           note.x2();note.rp();note.play();
21           note.rp();note.play();
22           System.out.println();
23       }
24   }
25   
26