My Question is that: Is it possible to show (2^63::Int) in 128 bit in Haskell?
Because of Int abs (2^63::Int) will not work because of the Int, but What If I have a 128 bit computer or compiler is it possible then to show the result?
Of course if it is possible, then please show me the way :)
According to the Report, this question is implementation specific:
I know of no implementations for which
maxBound :: Int
is larger than 2^63-1.