haskell convert list of strings to list of char code example
Example: string to list haskell
myShow :: String -> String
myShow s = concat ["[", intersperse ',' s, "]"]
myShow :: String -> String
myShow s = concat ["[", intersperse ',' s, "]"]