This may seem like a digression but it’s not. I have a point to make regarding our progress up to now.
Consider the following program.
Program Ascii ;
{
outputs all the ascii chars ... maybe
}
Var
i : Byte ;
begin { Ascii }
for i := 0 to 127 do
Write (Chr(i))
end. { Ascii }
Compile and run the program. What is the output?
Now redirect the output to a file, then use the
type command to list the output.
ascii > ascii.all
type ascii.all
Why is the output different? Answer tomorrow.