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