Name: Anonymous 2009-12-25 17:12
I have this:
How do I write fun in a point-free style? Dropping the argument gives me type errors.
ops :: [[Char] -> [Char]]
...
fun :: [Char] -> [[Char]]
fun str = zipWith ($) ops $ words strHow do I write fun in a point-free style? Dropping the argument gives me type errors.