Live data from Hacker News

Haskell Foundation 2026 Update

discourse.haskell.org

1–10 of 81 posts

Re: Haskell Foundation 2026 Update

#7

I heard of HVM recently, is that still related to Haskell or has that become its own thing?

It is just a runtime, no? I have only ever heard about it as something to run their own bend programming language.

Are people targeting it as a runtime for Haskell as well?

Re: Haskell Foundation 2026 Update

#8
Developer exercise is still lacking in Haskell ecosystem.

Slow 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

#9
The 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 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

#10

The 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…

I suspect that the compact nature of the syntax would require more tokens spent "thinking" to get decent results. It might be more efficient for simple code though. Either way worth testing. Surely someone must've set up a "how well LLMs handle Xlang" benchmark suite.
Post reply on HN