I'm using Haskell 2010.1.0.0.1 with ghc6. Typing :t at the ghci prompt followed by the name of a function shows us the type of the function. Is there a way to view the function definition as well? Thanks.
|
Not currently. The closest command to what you want is
like so:
You can though, see the source for identifiers generated by the haddock tool, on Hackage. Note that "?src" is a valid command in lambdabot, on the #haskell IRC channel, and does what you'd expect.
|
|||||
|
|
I don't think so. You can use
You can use hoogle to quickly find the documentation for a standard library function, which on the right has a link to go to the source. It's still a few clicks away though. |
|||
|
|
|
Nope, can't do that. Some fun things you, the Haskell beginner, can do:
|
|||
|
|