Maik Klein
Maik Klein

Reputation: 16148

F# source code documentation of the standard library

I learned most of my haskell knowledge by browsing though the Haskell docs with source code http://hackage.haskell.org/package/base-4.2.0.1/docs/Data-List.html#v%3Ahead

But I couldn't find the source code of common F# libraries, I only found the docs on how to use them like http://msdn.microsoft.com/en-us/library/ee370406.aspx

Is there something like hackage for F#?

Upvotes: 4

Views: 153

Answers (1)

goric
goric

Reputation: 11865

There is an open-source edition of the F# compiler and core library available on GitHub.

Upvotes: 5

Related Questions