Integer long division: Difference between revisions

Content added Content deleted
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
m (→‎{{header|Wren}}: Minor tidy)
Line 595: Line 595:
=={{header|Wren}}==
=={{header|Wren}}==
This is based on the Python code [http://codepad.org/hKboFPd2 here].
This is based on the Python code [http://codepad.org/hKboFPd2 here].
<syntaxhighlight lang="ecmascript">import "/big" for BigInt
<syntaxhighlight lang="wren">import "./big" for BigInt


var divide = Fn.new { |m, n|
var divide = Fn.new { |m, n|