RosettaCodeData/Task/Non-decimal-radices-Input/Haskell/non-decimal-radices-input.hs
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

6 lines
127 B
Haskell

Prelude> read "123459" :: Integer
123459
Prelude> read "0xabcf123" :: Integer
180154659
Prelude> read "0o7651" :: Integer
4009