Possible Duplicate:
Haskell Error: Couldn't match expected typeInteger' against inferred typeInt'
How can I convert Int to Integer in Haskell?
How can I convert |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
There is a |
|||||||||
|
|
fromIntegral is a good generic way to convert any Integral value into any other Integeral. But as sth said, toInteger works for the case of converting specifically to an Integer. |
|||
|
|