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