blob: c3cf302d7c53f6c8dad6d998f3455b1cf85ac759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Program Example14;
uses Crt;
{ Program to demonstrate the LowVideo, HighVideo, NormVideo functions. }
begin
LowVideo;
WriteLn('This is written with LowVideo');
HighVideo;
WriteLn('This is written with HighVideo');
NormVideo;
WriteLn('This is written with NormVideo');
end.
|