dos_compilers/Borland Turbo Pascal v7/EXAMPLES/OVRDEMO2.PAS

24 lines
494 B
Plaintext
Raw Normal View History

2024-07-02 17:21:37 +02:00
{************************************************}
{ }
{ Overlay Demo Unit }
{ Copyright (c) 1985,90 by Borland International }
{ }
{************************************************}
{$O+,F+}
unit OvrDemo2;
{ This unit is used by OVRDEMO.PAS }
interface
procedure Write2;
implementation
procedure Write2;
begin
Writeln('Two...');
end;
end.