dos_compilers/Borland Turbo Pascal v6/DEMOS/OVRDEMO2.PAS
2024-07-02 07:11:05 -07:00

20 lines
242 B
Plaintext

{ Copyright (c) 1985,90 by Borland International, Inc. }
{$O+,F+}
unit OvrDemo2;
{ This unit is used by OVRDEMO.PAS }
interface
procedure Write2;
implementation
procedure Write2;
begin
Writeln('Two...');
end;
end.