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