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