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();
16           note.play();
17           note.rp(7);
18           note.play();
19           note.s2();
20           note.lp();
21           note.play();
22           note.lp(2);
23           note.s2();
24           note.play();
25           note.rp();
26           note.play();
27           note.x2();
28           note.rp();
29           note.play();
30           note.rp();
31           note.play();
32           System.out.println();
33       }
34   
35   }
36   
37