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