Elementary cellular automaton/Random number generator: Difference between revisions

Content added Content deleted
(→‎{{header|Raku}}: use `handles <AT-POS>`)
m (→‎{{header|Wren}}: Minor tidy)
Line 966: Line 966:
{{libheader|Wren-big}}
{{libheader|Wren-big}}
As Wren cannot deal accurately with 64-bit unsigned integers and bit-wise operations thereon, we need to use BigInt here.
As Wren cannot deal accurately with 64-bit unsigned integers and bit-wise operations thereon, we need to use BigInt here.
<syntaxhighlight lang="ecmascript">import "/big" for BigInt
<syntaxhighlight lang="wren">import "./big" for BigInt


var n = 64
var n = 64