MarkB
generic
Sections
NuprlLIB
Doc
Def
gcd(a;b) == if b=
0
a else gcd(b;a rem b) fi (recursive)
is mentioned
In prior sections:
num
thy
1
MarkB
generic
Sections
NuprlLIB
Doc