home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
Pascal
/
Source□
/
Talk Source
/
My Libraries
/
MyAssertions.unit
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
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.