/home/ssingh6/NetBeansProjects/CS1/src/mmw/TwoFigureMinuetThing.java |
1
2
3
4 package mmw;
5 import note.SNote;
6
7
8
9 @author
10
11 public class TwoFigureMinuetThing {
12
13
14 @param args
15
16 public static void main(String[] args) {
17 SNote note = new SNote();
18 note.text();
19 note.play();
20 note.lp(4); note.s2(); note.play();
21 note.rp(); note.play();
22 note.rp(); note.play();
23 note.rp(); note.play();
24 note.rp(); note.play();
25 note.lp(); note.play();
26 note.lp(); note.play();
27 note.rp(); note.play();
28 note.x2(); note.rp(); note.play();
29 }
30
31 }
32