|
12 | 12 | */ |
13 | 13 |
|
14 | 14 | public class AboutMe { |
15 | | - public static void main(String[] args) { |
16 | | - // print my name |
17 | | - System.out.print("Inej Ghafa "); |
18 | 15 |
|
19 | | - // print a message |
20 | | - System.out.println("No mourners, no funerals."); |
| 16 | + public static void main(String[] args) { |
| 17 | + // print my name |
| 18 | + System.out.print("Inej Ghafa "); |
21 | 19 |
|
22 | | - // print a poem |
23 | | - System.out.println("Shall I tell you the secret of true love?"); |
24 | | - System.out.println("A friend of mine liked to tell me that women love flowers"); |
25 | | - System.out.println("Many boys will bring you flowers."); |
26 | | - System.out.println("But someday you'll meet a boy who will learn your favorite flower,"); |
27 | | - System.out.println("your favorite song,"); |
28 | | - System.out.println("your favorite sweet."); |
29 | | - System.out.println("And even if he is too poor to give you any of them,"); |
30 | | - System.out.println("it won't matter because he will have taken the time"); |
31 | | - System.out.println("to know you as no one else does."); |
32 | | - System.out.println("Only that boy earns your heart."); |
33 | | - System.out.println("-Leigh Bardugo, Six of Crows"); |
34 | | - } |
| 20 | + // print a message |
| 21 | + System.out.println("No mourners, no funerals."); |
| 22 | + |
| 23 | + // print a poem |
| 24 | + System.out.println("Shall I tell you the secret of true love?"); |
| 25 | + System.out.println( |
| 26 | + "A friend of mine liked to tell me that women love flowers" |
| 27 | + ); |
| 28 | + System.out.println("Many boys will bring you flowers."); |
| 29 | + System.out.println( |
| 30 | + "But someday you'll meet a boy who will learn your favorite flower," |
| 31 | + ); |
| 32 | + System.out.println("your favorite song,"); |
| 33 | + System.out.println("your favorite sweet."); |
| 34 | + System.out.println( |
| 35 | + "And even if he is too poor to give you any of them," |
| 36 | + ); |
| 37 | + System.out.println( |
| 38 | + "it won't matter because he will have taken the time" |
| 39 | + ); |
| 40 | + System.out.println("to know you as no one else does."); |
| 41 | + System.out.println("Only that boy earns your heart."); |
| 42 | + System.out.println("-Leigh Bardugo, Six of Crows"); |
| 43 | + } |
35 | 44 | } |
0 commit comments