Arbitrary-precision integers (included): Difference between revisions

Content added Content deleted
m (→‎{{header|Wren}}: Minor tidy)
Line 2,503: Line 2,503:
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
{{libheader|Wren-big}}
{{libheader|Wren-big}}
<syntaxhighlight lang="ecmascript">import "/fmt" for Fmt
<syntaxhighlight lang="wren">import "./fmt" for Fmt
import "/big" for BigInt
import "./big" for BigInt


var p = BigInt.three.pow(BigInt.two)
var p = BigInt.three.pow(BigInt.two)