Special factorials: Difference between revisions

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