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