mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-21 02:38:24 +02:00
13 lines
163 B
ObjectPascal
13 lines
163 B
ObjectPascal
Program Example;
|
|
|
|
{ Program to demonstrate the *** function. }
|
|
|
|
Uses video,keyboard,vidutil;
|
|
|
|
begin
|
|
InitVideo;
|
|
InitKeyboard;
|
|
DoneKeyboard;
|
|
DoneVideo;
|
|
end.
|