Glasgow Haskell Compiler is a state-of-the-art, open source compiler and interactive environment for the functional language Haskell.
I wanted to use {-# LANGUAGE OverloadedStrings #-} but I forgot how it's called. This kind of thing isn't hoogle-able, …
haskell ghcI'm having trouble understanding how Haskell (GHC) compiles programs, and how those programs are run. GHC is the canonical example …
haskell compilation runtime ghcI have a Haskell program which processes a text file and builds a Map (with several million elements). The whole …
performance haskell garbage-collection ghcI have used the ghci debugger but would really prefer if it was somewhat integrated with a text editor to …
haskell debugging ghcI've been excited about LLVM being low enough to model any system, and saw it as promising that Apple was …
haskell llvm clang ghc c-minus-minusGiven: data Foo = FooString String … class Fooable a where --(is this a good way to name this?) toFoo :: a …
haskell ghc typeclass type-systemsIt's rather nice that ghc-pkg check will list broken packages, and why they are broken. But as far as I …
haskell dependencies ghcHow can I find the actual amount of memory required to store a value of some data type in Haskell (…
haskell memory-management ghc algebraic-data-typesWe are developing a program which receives and forwards "messages", while keeping a temporary history of those messages, so that …
performance haskell garbage-collection ghc latency