-- This program prints my name and address at the terminal
-- Author: John Weber
with Ada.Text_Io;
use Ada.Text_Io;
-- Ada 95: From The Beginning
-- Chapter 2, Problem 5
procedure Ch2Problem5 is
begin
   Put_Line("John E Weber");
   Put_Line("8/210 North Academic Center");
   Put_Line("Department of Computer Science");
   Put_Line("City College of New York");
   Put_Line("New York, NY  10025");
   Put_Line("weber@cs.ccny.cuny.edu");
   Put_Line("http://www-cs.ccny.cuny.edu/students/weber/");
end Ch2Problem5;
