/**
 * Prints my name and age to the screen.
 *
 * Demonstrates the use of variables, the difference between
 * print and println, and string concatenation.
 *
 * @author Zach Tomaszewski.
 */
public class ZtomaszeAge {

  public static void main(String[] args) {
    String name;
    name = "Zach";
    int age = 29;

    System.out.print("My name is ");
    System.out.print(name);
    System.out.println(".");
    System.out.println("I am " + age + " years old.");
  }
}
