Category talk:Wren-big: Difference between revisions

Content added Content deleted
(→‎Source code: Added BigRat.sqrt method.)
(→‎Source code: Bug fix.)
Line 1,571: Line 1,571:


// Returns the string representation of this BigRat object depending on 'showAsInt'.
// Returns the string representation of this BigRat object depending on 'showAsInt'.
toString { (BigRat.showAsInt && _d == BigRat.one) ? "%(_n)" : "%(_n)/%(_d)" }
toString { (BigRat.showAsInt && _d == BigInt.one) ? "%(_n)" : "%(_n)/%(_d)" }
}
}