/*
Step 2 Lab
Drawing a House

Write a program that draws a house using characters inside of quotation marks. The two output statements in Java for console applications are
System.out.print("stuff goes here");        -- and --
System.out.println("stuff goes here");
TODO:
  1. Read and run this code to understand System.out.print, System.out.println, and "\n" .
  2. After running this program, replace the below code with code to draw a house.

*/
       // code snippet goes here.
       System.out.print("This ");
       System.out.println("is ");
       System.out.print("my ");
       System.out.print("snippet ");
       System.out.print("of\n");
       System.out.println("code.");