Homework 4, Create your own business card.

Short Description:

Modify the code presented in this section, to print a business card for yourself or a favorite fictional character.

Goals

When you finish this homework, you should have:

Formal Description

Using the code presented in the lecture (and here), print a business card to the screen. You can do this for yourself, or if you wish a your favorite fictional character.
class BusinessCard {
   public static void main() {
       System.out.println("+--------------------------------------+");
       System.out.println("|                                      |");
       System.out.println("|             Dan Bennett              |");
       System.out.println("|         Associate Professor          |");
       System.out.println("|        dbennett@pennwest.edu         |");
       System.out.println("|                                      |");
       System.out.println("+--------------------------------------+");
   }
} 

Notes:

Required Files

A single java file (the .java file, not the .class file)

Submission

Submit the assignment to the D2L folder Homework 4 by the due date.