I have a very simple question: Given a function accepting a char and returning a string
test :: Char -> [String]
how can one convert the
Note that you can convert any type implementing the Show type class to a string using show:
Show
show
(Show a) => a -> String
Because Char implements this, the function is already written for you!
Char