Turing 003 — Program Header

All programs should include a “program header”. This header should, as a minimum, include a program description, the author’s (programmer’s) name, the date, and the filename. An example header is shown below:

% author: Jane Doe

% date: 2003-09-06

% filename: put2.t

% description: prints user’s name to the screen

Note that a percent sign (“%”) is used before each of the header lines. These are used to tell the Turing program to ignore these lines and treat them like comments.

For most programs written in this class, you may copy and paste my requirements into the "description" part of the program header. If it is too wide to fit on the screen, break it up into two or more lines.

Assignment

Add an appropriate program header to 001.t. Save as "003.t".