7

what native programming languages have support for numbers to the nth bit?

Comments
  • 1
    If you are asking for arbitrarily large integers. Python3 does it out of the box (not sure about 2). There is big integer class in Java for the same purpose. And there are libraries for most languages I guess, even Javascript has bn.js and BigNumber libraries, an there are no integers at all in Javascript :)
Add Comment