Logo

Programming-Idioms

History of Idiom 123 > diff from v34 to v35

Edit summary for version 35 by jasom:
[Lisp] isConsistent needs to be function call

Version 34

2021-08-17, 00:16:42

Version 35

2021-08-17, 00:17:05

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Variables
isConsistent
Variables
isConsistent
Extra Keywords
debug testing test
Extra Keywords
debug testing test
Code
(assert isConsistent)
Code
(assert (isConsistent))
Comments bubble
Assertion is always executed.
Comments bubble
Assertion is always executed.