| Some definitions of interest. |
|
assert | Def b == if b True else False fi |
| | Thm* b: . b Prop |
|
label | Def t ...$L == t |
|
length | Def ||as|| == Case of as; nil 0 ; a.as' ||as'||+1 (recursive) |
| | Thm* A:Type, l:A List. ||l||  |
| | Thm* ||nil||  |
| | Thm* 'a:Type, l:'a List. ||l||  |
|
lt_int | Def i< j == if i<j true ; false fi |
| | Thm* i,j: . (i< j)  |
|
nat | Def == {i: | 0 i } |
| | Thm* Type |
| | Thm* S |
|
stype | Def S == {T:Type| x:T. True } |
| | Thm* S Type{2} |