haskell how to turn a sting into a list code example
Example: string to list haskell
myShow :: String -> String
myShow s = concat ["[", intersperse ',' s, "]"]
myShow :: String -> String
myShow s = concat ["[", intersperse ',' s, "]"]