Logo

Programming-Idioms

History of Idiom 123 > diff from v14 to v15

Edit summary for version 15 by daxim:
New Perl implementation by user [daxim]

Version 14

2019-09-27, 10:06:20

Version 15

2019-09-27, 10:49:21

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.

Imports
use PerlX::Assert;
Code
assert { is_consistent };
Doc URL
http://p3rl.org/PerlX::Assert