On Wed, May 21, 2014 at 2:47 AM, silvio <silvio.frischi@gmail.com> wrote:
do print map (<-readFile) ["foo","bar"]

The closest current Haskell can come to this is

print =<< mapM readFile ["foo","bar"]

And I agree that the manual effect typing, the requisite =<< and the mapM for map, can be a pain.

-- Kim-Ee