Assignment 7 and Letter to Self

Code

/// Name: Matthew Hughs
/// Period: 5
/// Program Name: Letter to Self
/// File Name: LettertoSelf.java
/// Date Finished: 9/8/2015

class LettertoSelf {
    
    public static void main(String[] args) {
        System.out.println("+-----------------------------------+");
        System.out.println("|                              #### |");
        System.out.println("|                              #### |");
        System.out.println("|                              #### |");
        System.out.println("|                                   |");
        System.out.println("|                  Matthew Hughs    |");
        System.out.println("|                  430 Memer Court  |");
        System.out.println("|                  Compton, CA 66666|");
        System.out.println("|                                   |");
        System.out.println("+-----------------------------------+");
    }
}
    

Picture of the output

LettertoSelf