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