home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2000 April
/
Chip_2000-04_cd.bin
/
zkuste
/
TPascal
/
DEMOS.ARC
/
ERROR.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1989-05-02
|
302b
|
22 lines
{ Copyright (c) 1985, 1989 by Borland International, Inc. }
unit Error;
{ Sample unit for CIRCULAR.PAS }
interface
procedure ShowError(Msg : string);
implementation
uses
Crt, Display;
procedure ShowError(Msg : string);
begin
WriteXY(1, 25, 'Error: ' + Msg);
end;
end.