
{ Copyright (c) 1985, 1989 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.
