-- Defines some convenience printing functions module Hsm.Core.Show ( showHex ) where import Numeric qualified as N (showHex) showHex :: Integral a => a -> String showHex v = "0x" <> N.showHex v ""