:browse
- when the Haskell program is compiled, (useful) information about which module comes from is not saved, so your program will not be able to access this information.
:type
- If you are not using Data.Typeable , types are not displayed at all at runtime. The types in Haskell are mainly intended for the compiler to check the correctness / security of the code.
:info
- See above.
source share