module Output where import Data.Char sanitizeForDisplay :: String -> String sanitizeForDisplay = map go where go c | isPrint c = c | otherwise = '?'