diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2021-08-08 15:00:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-08 15:00:57 +0100 |
| commit | a9f840863e57cc67f5fd3e328f08dd6c3073c782 (patch) | |
| tree | 9894bd6a69ead9183c9f069e239f5afe2b4668bc /challenge-124/abigail/java/ch-1.java | |
| parent | 01017a182fe0195cb8e2ec9163d6a0e5f45d6a59 (diff) | |
| parent | 89fb3dd9028a616398e339a722d392be43a218a2 (diff) | |
| download | perlweeklychallenge-club-a9f840863e57cc67f5fd3e328f08dd6c3073c782.tar.gz perlweeklychallenge-club-a9f840863e57cc67f5fd3e328f08dd6c3073c782.tar.bz2 perlweeklychallenge-club-a9f840863e57cc67f5fd3e328f08dd6c3073c782.zip | |
Merge pull request #4678 from Abigail/abigail/week-124
Abigail/week 124
Diffstat (limited to 'challenge-124/abigail/java/ch-1.java')
| -rw-r--r-- | challenge-124/abigail/java/ch-1.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/challenge-124/abigail/java/ch-1.java b/challenge-124/abigail/java/ch-1.java new file mode 100644 index 0000000000..93dd9df6a7 --- /dev/null +++ b/challenge-124/abigail/java/ch-1.java @@ -0,0 +1,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"); + } +}
\ No newline at end of file |
