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