
8 Jul
2012
8 Jul
'12
1:28 a.m.
Python has the pydoc command to get help for builtins and modules, eg. "pydoc def" or "pydoc itertools" Perl has a similar facility with the perldoc, eg. "perldoc -tf substr" Is there such a thing available for Haskell? I have been consulting http://www.haskell.org/hoogle/ but it isn't as practical as having help available at the prompt (although very useful, though). thanks in advance.