/home/rkanin/NetBeansProjects/CS1/src/mmw/TwoFigureMinuetThing.java |
1
2
3
4 package mmw;
5
6 import composer.SComposer;
7 import note.SNote;
8
9
10
11 @author
12
13 public class TwoFigureMinuetThing {
14
15
16 @param args
17
18 public static void main(String[] args) {
19
20
21
22
23
24 SNote rich = new SNote();
25 rich.text();
26 rich.play();
27 rich.lp(4); rich.s2(); rich.play();
28 rich.rp(); rich.play();
29 rich.rp(); rich.play();
30 rich.rp(); rich.play();
31 rich.rp(); rich.play();
32 rich.lp(); rich.play();
33 rich.lp(); rich.play();
34 rich.rp(); rich.play();
35 rich.x2(); rich.rp(); rich.play();
36 System.out.println();
37
38
39
40 }
41
42 }
43