blob: 93dd9df6a74db8e0205926a6defc8d45b6ce2da0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// See ../README.md
//
//
// Run as: ln ch-1.java ch1.java; javac ch1.java; java ch1
//
public class ch1 {
public static void main (String [] args) {
System . out . print (" ^^^^^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^ ^\n");
System . out . print (" ^^^^^\n");
System . out . print (" ^\n");
System . out . print (" ^\n");
System . out . print (" ^\n");
System . out . print (" ^^^^^\n");
System . out . print (" ^\n");
System . out . print (" ^\n");
}
}
|