Graphs
Sections
NuprlLIB
Doc
Def
primrec(n;b;c) == if n=
0
b else c(n-1,primrec(n-1;b;c)) fi (recursive)
is mentioned
In prior sections:
mb
nat
graph
1
1
mb
list
1
graph
1
3
Graphs
Sections
NuprlLIB
Doc