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