how to turn a string into a listi 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, "]"]