Comment imprimer des littéraux entiers en binaire ou hex en haskell?
printBinary 5 => "0101"
printHex 5 => "05"
Quelles bibliothèques / fonctions permettent cela?
Je suis tombé sur le module Numeric et sa fonction showIntAtBase mais je n’ai pas pu l’utiliser correctement.
> :t showIntAtBase
showIntAtBase :: (Integral a) => a -> (Int -> Char) -> a -> String -> String