assert= ( a b -- )
Assertions
Prev:assert ( got expect -- * )


Vocabulary
kernel

Inputs and outputs
aan object
ban object


Word description
Throws an assert error if a does not equal b.

Definition
IN: kernel

: assert= ( a b -- ) 2dup = [ 2drop ] [ assert ] if ;