home *** CD-ROM | disk | FTP | other *** search
- -- Chapter 2 - Programming Exercise 2
- with Text_IO;
- use Text_IO;
-
- procedure Ch02_2 is
-
- begin
- Put("John Q. Doe");
- New_Line;
- Put("Anywhere, Anystate, USA, 12345");
- New_Line;
- Put("(123) 456-7890");
- New_Line;
- end Ch02_2;
-
-
-
-
-
- -- Result of execution
-
- -- John Q. Doe
- -- Anywhere, Anystate, USA, 12345
- -- (123) 456-7890
-