Multiplicative order: Difference between revisions

Content added Content deleted
m (→‎{{header|11l}}: named tuples)
 
Line 49: Line 49:
{{trans|D}}
{{trans|D}}


<syntaxhighlight lang="11l">T PExp
<syntaxhighlight lang="11l">T PExp = (BigInt prime, Int exp)
BigInt prime
Int exp
F (prime, exp)
.prime = prime
.exp = exp


F isqrt(self)
F isqrt(self)