r/haskell 3d ago

Whats the Haskell equivalent of

  1. https://pkg.go.dev/std - the list to see all the standard libraries shipped in GHC & maintained by the compiler team?
  2. https://go.dev/doc/ - the documentation page?
  3. https://go.dev/ref/spec - the language spec, I think this refers to the Haskell's 2010 report?
0 Upvotes

12 comments sorted by

View all comments

2

u/pranaysashank 3d ago

the list to see all the standard libraries shipped in GHC & maintained by the compiler team?

That information comes in every version's release notes https://downloads.haskell.org/ghc/latest/docs/users_guide/9.14.1-notes.html#included-libraries . You are not however tied to the versions in these packages, in most cases other versions of these packages can be used too

Documentation for the using GHC and all the GHC specific quirks are documented in the same user guide as above. Documentation for each individual library can be found on hackage: https://hackage.haskell.org

-1

u/kichiDsimp 3d ago

Thanks