dos_compilers/Borland Turbo Pascal v6/DEMOS/OVRDEMO1.PAS

20 lines
242 B
Plaintext
Raw Normal View History

2024-07-02 16:11:05 +02:00
{ Copyright (c) 1985,90 by Borland International, Inc. }
{$O+,F+}
unit OvrDemo1;
{ This unit is used by OVRDEMO.PAS }
interface
procedure Write1;
implementation
procedure Write1;
begin
Writeln('One...');
end;
end.