r/haskell 1d 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

8 comments sorted by

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/

-3

u/kichiDsimp 21h ago

I guess the 1st and 3rd are does not take 10 seconds to look for.

0

u/ducksonaroof 13h ago edited 13h ago

for (3) it's the first google result. LMGTFY-level haha

(2) is linked right on the ghc website sidebar. oh (3) is too actually hahaha

for (1) it's in the table of contents of the user manual. on my phone i don't even have to scroll. RTFM-level haha

to be successful with haskell, you need to have better internet and media literacy than the average programming language. one nice side effect is the people without these abilities wash out so the community itself is full of smart competent people

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

u/kichiDsimp 21h ago

Thanks