To see bindings you've made at the ghci prompt (e.g. with let or <-), try :show bindings.
If you've loaded some modules, you can use :show modules to get the names of loaded modules and then :browse ModuleName to list everything in scope from that module.
6
Daniel Wagner
On
When in ghci, use :browse or just :bro after loading the file. You may also browse unloaded modules via :browse Foo.Bar.Baz.
To see bindings you've made at the ghci prompt (e.g. with
let
or<-
), try:show bindings
.If you've loaded some modules, you can use
:show modules
to get the names of loaded modules and then:browse ModuleName
to list everything in scope from that module.