dos_compilers/Borland Turbo Pascal v7/EXAMPLES/OVRDEMO2.PAS
2024-07-02 08:21:37 -07:00

24 lines
494 B
Plaintext

{************************************************}
{ }
{ 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.