home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Source Code
/
Peter Lewis
/
Talk 1.0.6
/
My Libraries
/
MyAssertions.unit
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-04-20
|
268 b
|
18 lines
|
[
TEXT/PJMM
]
unit MyAssertions;
{ This program was written by Peter N Lewis, Mar 1992 in THINK Pascal 4.0.1 }
interface
procedure Assert (b: boolean);
implementation
procedure Assert (b: boolean);
begin
if not b then begin
DebugStr('Assert Failed');
end;
end;
end.