Arithmetic derivative: Difference between revisions

Content added Content deleted
m (→‎{{header|ALGOL W}}: Fixed Trans template)
m (→‎{{header|Wren}}: Changed to Wren S/H)
Line 1,479: Line 1,479:
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
As integer arithmetic in Wren is inaccurate above 2^53 we need to use BigInt here.
As integer arithmetic in Wren is inaccurate above 2^53 we need to use BigInt here.
<syntaxhighlight lang="ecmascript">import "./big" for BigInt
<syntaxhighlight lang="wren">import "./big" for BigInt
import "./fmt" for Fmt
import "./fmt" for Fmt