4 lines
90 B
Haskell
4 lines
90 B
Haskell
*Main> toAlphaDigits $ toBase 16 $ 42
|
|
"2a"
|
|
*Main> fromBase 16 $ fromAlphaDigits $ "2a"
|
|
42
|