| Some definitions of interest. |
|
assert | Def b == if b True else False fi |
| | Thm* b: . b Prop |
|
iff | Def P  Q == (P  Q) & (P  Q) |
| | Thm* A,B:Prop. (A  B) Prop |
|
not | Def A == A  False |
| | Thm* A:Prop. ( A) Prop |
|
prop_to_bool | Def  P == InjCase(lem(P) ; true ; false ) |
| | Thm* P:Prop. ( P)  |
|
stype | Def S == {T:Type| x:T. True } |
| | Thm* S Type{2} |