Library TLC.LibUnit
Definition
From the Prelude.
Inductive unit : Type :=
| tt : unit.
Add Printing If bool.
Delimit Scope bool_scope with bool.
Lemma unit_eq :
forall (
tt1 tt2 :
unit),
tt1 = tt2.
Proof using.
intros.
destruct tt1.
destruct~
tt2.
Qed.