Haskell Foundation 2026 Update
discourse.haskell.org
Haskell Foundation 2026 Update
1–10 of 81 posts
Re: Haskell Foundation 2026 Update
#2Re: Haskell Foundation 2026 Update
#3Re: Haskell Foundation 2026 Update
#4Re: Haskell Foundation 2026 Update
#5Re: Haskell Foundation 2026 Update
#6Re: Haskell Foundation 2026 Update
#7I heard of HVM recently, is that still related to Haskell or has that become its own thing?
Are people targeting it as a runtime for Haskell as well?
Re: Haskell Foundation 2026 Update
#8Slow build times, deployment to Linux when developing on macos still pain. Deployment is pain specially on commodity VPS.
Go is very easy to cross compile and deploy.
But Haskell is better for a few things, but I've hardtime deploying it
Re: Haskell Foundation 2026 Update
#9I have not played around with it to see how that plays out with agentic coding. But it does seem like an interesting idea.
Re: Haskell Foundation 2026 Update
#10The thought crosses my mind that Haskell may be uniquely suited for AI coding using a very small context window (cheap). Haskell encourages small functions and no global state. So you may be able to capture all the relevant context for editing a Haskell function within a few hundred or few thousand tokens. That would be better than some other languages. Plus the strong typing could help AI agents catch errors. I have…