I have a very simple question: Given a function accepting a char and returning a string
test :: Char -> [String]
how can one convert the
Another way would be using
return . return
Since return for lists is defined as :[]
return
:[]