Special factorials: Difference between revisions

Content added Content deleted
(Added Quackery.)
m (→‎{{header|Wren}}: Minor tidy)
Line 2,175: Line 2,175:
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
We've little choice but to use BigInt here as Wren can only deal natively with integers up to 2^53.
We've little choice but to use BigInt here as Wren can only deal natively with integers up to 2^53.
<syntaxhighlight lang="ecmascript">import "/big" for BigInt
<syntaxhighlight lang="wren">import "./big" for BigInt
import "/fmt" for Fmt
import "./fmt" for Fmt


var sf = Fn.new { |n|
var sf = Fn.new { |n|