Build a program that prints your personal introduction card to the console.
Create PersonalCard.java with a main method.
Print a bordered card using print and println:
+---------------------+
| Name: Your Name |
| Age: 25 |
| City: New York |
| Hobby: "Coding" |
+---------------------+
Use \t for column alignment and \" to put quotes around your hobby.
Add a comment at the top explaining what the program does.
Compile and run from the terminal.
This combines everything from this section: class structure, main, print methods, escape characters, comments, and naming conventions.