Definitions hol arithmetic 5 Sections HOLlib Doc
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html
Some definitions of interest.
hallDef all == p:'ax:'a. (p(x))
Thm* 'a:S. all  (('a  hbool)  hbool)
assertDef b == if b True else False fi
Thm* b:b  Prop
bequalDef x = y == (x = y  T)
Thm* T:Type, x,y:T. (x = y 
hevenDef even == n:. even(n)
Thm* even  (hnum  hbool)
evenDef even(n) == if n=0 then true else even(n-1) fi   (recursive)
Thm* n:. even(n 
hnumDef hnum == 
Thm* hnum  S
hoddDef odd == n:. odd(n)
Thm* odd  (hnum  hbool)
horDef or == p:q:p  q
Thm* or  (hbool  hbool  hbool)
natDef  == {i:| 0i }
Thm*   Type
Thm*   S
oddDef odd(n) == if n=0 then false else odd(n-1) fi   (recursive)
Thm* n:. odd(n 
tlambdaDef (x:Tb(x))(x) == b(x)

About:
boolbfalsebtrueifthenelseassertintnatural_numbersubtract
setapplyfunctionrecursive_def_noticeuniverse
equalmemberpropfalsetrueall!abstraction
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html

Definitions hol arithmetic 5 Sections HOLlib Doc