Definitions NuprlPrimitives Sections NuprlLIB Doc
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html
Some definitions of interest.
assertDef b == if b True else False fi
Thm* b:b  Prop
sfa_doc_factorialDef x! == if x=0 1 else x(x-1)! fi  (recursive)
Thm* x:x 
sfa_doc_factorial2Def x! == if x=0 1 else x(x-2)! fi  (recursive)
Thm* x:{x:| (x rem 2) = 0 }. x!  
sfa_doc_ntupleDef A^n == if n=0 Unit ; n=1 A else A(A^(n-1)) fi  (recursive)
Thm* A:Type, n:. (A^n Type
eq_intDef i=j == if i=j true ; false fi
Thm* i,j:. (i=j 
sfa_doc_ntuple_containsDef  u in XA^nP(u)
Def == n = 1   & P(X n2 & (X/a,restP(a ( u in restA^(n-1). P(u)))
Def (recursive)
Thm* A:Type, P:(AProp), n:X:(A^n). ( u in XA^nP(u))  Prop
geDef ij == ji
Thm* i,j:. (ij Prop
kleene_minimizeDef mu(f) == if f(0) 0 else 1+mu(x.f(1+x)) fi  (recursive)
Thm* mu  {f:()| x:f(x) }
natDef  == {i:| 0i }
Thm*   Type
notDef A == A  False
Thm* A:Prop. (A Prop

About:
spreadproductboolbfalsebtrueifthenelseassertunitint
natural_numberaddsubtractmultiplyremainderint_eqset
lambdaapplyfunctionrecursive_def_noticeuniverseequalmember
propimpliesandorfalsetrueallexists
!abstraction
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html

Definitions NuprlPrimitives Sections NuprlLIB Doc