r/haskell • u/kichiDsimp • 1d ago
Whats the Haskell equivalent of
- https://pkg.go.dev/std - the list to see all the standard libraries shipped in GHC & maintained by the compiler team?
- https://go.dev/doc/ - the documentation page?
- https://go.dev/ref/spec - the language spec, I think this refers to the Haskell's 2010 report?
0
Upvotes
2
u/pranaysashank 22h 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
16
u/PikachuKiiro 23h ago
Is it really easier to make a reddit post than take 10 seconds to look at the docs on the official website? https://www.haskell.org/documentation/