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