frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Pain Points of OCaml

https://quamserena.com/2025-11-03/pain-points-of-ocaml
43•quamserena•7h ago

Comments

StepBroBD•4h ago
For printing, there’s show in ppx_deriving [1], and I think ppx in general had made my overall experience with OCaml a lot better.

[1] https://github.com/ocaml-ppx/ppx_deriving

rwmj•4h ago
As an engineer writing OCaml (and Rust too), I don't find any of this stuff to be a pain point. The syntax is fine once you get used to it. Anecdotally one of my colleagues who is learning OCaml and contributing to the code is using an AI to help get the syntax right and that works for him. Types in Rust are way more complicated and obscure than the ones in OCaml.

The ecosystem stays out of the way as much as possible - we are mainly interested in interfacing with C code directly, and OCaml (and Rust) make that pretty easy. I've been writing this project for over a decade and the language has been reasonably stable (OCaml 5 made some changes to the C interface, but we coped). Rust actually causes far more code churn - there's virtually a monthly cycle of some Rust compiler update requiring changes to existing code.

simonask•3h ago
> Rust actually causes far more code churn - there's virtually a monthly cycle of some Rust compiler update requiring changes to existing code.

This is really surprising to me. Which changes have you had to deal with here? The only one I can think of is the major Edition 2024 upgrade, which changed the `#[no_mangle]` attribute to `#[unsafe(no_mangle)]`. But the old syntax still compiles just fine with the newest compiler using Edition 2021.

StopDisinfo910•2h ago
I stopped fighting this battle a long time ago. I think Ocaml just doesn't spoon feed people enough. They would have to actually read the documentation to understand and that's simply too hard nowadays so you end up which this kind of articles about "pain points" which are basically "I don't know what I'm doing and making a lot of mistakes, let me blame my tool".

Basically, when someone complaining starts by "I don't like the Algol-like syntax", obviously without saying it's Algol-like because that would require they actually know what Algol is, the rest is probably going to be extremely poor at best.

And here, it doesn't disappoint. Point 2, "I don't like type inference, it's too clever". Or you could just put type annotations at every declarations like every pieces of documentation ever produced on the language invite you to.

The type paragraph and the mentions of shadowing actually shows the author doesn't know how to use the Ocaml module system. For the neophytes here, it's the main standout feature of Ocaml. It's a bit like talking about C without knowing how to use pointers. I have seen people do that actually so I probably shouldn't be too surprised.

Menhir and ocamllex syntaxes are just slight twists on the actual syntaxes of yacc and lex. Nothing surprising for someone who knows both tools but I guess it's becoming a rarity nowadays. To be honest, the Ocaml compiler works exactly how you would expect a C compiler and linker to work. That makes it really simple and predictable for people who used to be C programmers but apparently completely inscrutable for young developers.

For printing, they quote "#[derive(Debug)]" in Rust but apparently they never reached ppx_deriving in Ocaml. It's a shame because it does exactly the same thing.

The whole conclusion with the weird segway about academics for a language which was purposefully designed to write provers and not as a research language doesn't even deserve to be commented upon.

Anyway, just go use Rust, bask in the hype, fight the borrow checker for things which don't require manual memory management, and leave us be. I think a significant part of why Ocaml is nice is that it is not appealing to many developers.

nesarkvechnep•1h ago
As soon as I saw the author uses OCaml for a class, I immediately knew the analysis will be somewhat superficial. No wonder, remembering my limited understanding when I was studying.

Thank you for your comment because I've been meaning to give OCaml a serious chance for a vary long time.

galangalalgol•1h ago
What are the actual places you'd like to see improvement as an experienced user? A sibling post siggested concurrency, but from the outside those choices mostly seem to make sense. I've read complaints about opam/dune, but for simple stuff it seems to work fine.
IsTom•3m ago
I don't particularly use OCaml anymore (though might in the future I guess), but one thing I remember is that sometimes when you had different parts of type system interact the compiler would just complain that you can't do that (mixing variants and GADTs was one such case I think?) without any real indication that this would be a problem before you try it. I get why this happens and I don't know how many people would run into it, but some kind visible notice or documentation for these cases would be nice.
anthk•4h ago
On ML languages, you can try MLite first (it comes with a great manual and a paper too); and then you can jump into the biggies such as OCaML and maybe Haskell too:

https://t3x.org/mlite/index.html

user____name•3h ago
I like the apology page.
jpfromlondon•3h ago
Ocaml is one of the few languages I think you either really like or really don't.
lucas_membrane•2h ago
Not for me. I spent a few weeks a few weeks ago trying to use it. Much I liked. Much I didn't.

I like FP, so that was not a problem. But I found that lots of stuff was pretty hard for me as just an old guy trying to write some fancy little GUI apps to assist some of my other spare time activities. The project system, dune, was puzzling to me, and when I looked for clarification on-line it was pretty clear that I had lots of company. Not wanting to pass time writing code and seeing many potentialy useful packages available, I downloaded quite a few (actually, I downloaded not too many, but the dependencies required for those multiplied rapidly). Then I found myself managing multiple environments, because the different versions of this and that do not always work together so nice.

Some library code has to get imported some ways, some other ways. Etc, etc. Many tutorials teach the toplevel interpreter, but that's not recommended for projects of any size, and the other environments will choke on the code that works in the toplevel.

What I liked is that the OCaml ecosystem doen't look like it wants to control or ought to fear the next big thing. It's what you get when you have a lot of smart creative people who get inspired and do their best according to their own motivations and their own conception of quality. I admire that. I'm glad that I tried it.

pjmlp•3h ago
Having learnt ML via Caml Light, back when OCaml was still going to be the next version, and known by its full name Objective Caml, I never considered any of that a pain point.
_flux•3h ago
The article mentions that global type inference is painful, and Rust made the right call by requiring annotations, but actually I think the OCaml model is closer to the optimum: you can still annotate functions and perhaps you should (in fact the interface files are in my view great, but not everyone enjoys them), but the key benefit is that you can also use holes in such definitions, e.g.

    _ option list
is usually quite descriptive of what data you have, but still doesn't go into some detail you don't want to (sadly "int _ list" isn't supported by the type system). The types in Rust can sometimes get quite long, in particular if you want to avoid boxing and you're dealing with futures.
GCUMstlyHarmls•23m ago
I imagine there's as sweet spot between type inference, an LSP "add type annotations" action and a "function missing annotations" warning option. Smooth out the exploratory stage, flip to "strict" with one button and a way to enforce "strict" mode.
user____name•3h ago
Reminded me of this comparison between Ocaml and Sml with regards to the purity vs practicality. [0]

The complaint about syntax is amusing, I get a bit annoyed when I see Rust syntax being inserted into Java/C-ish languages.

[0] http://adam.chlipala.net/mlcomp/

sshine•3h ago
Standard ML was my favorite language 2008-2012, and whenever people criticize the syntax, I shake my head. ML syntax is among the most beautiful, and most readable, to me. OCaml has a few features that bring the readability down a little, like the named fields prefix. The fact that it doesn't look like C or Ruby isn't bad. Erlang can be very readable, it just feels alien, which I presume is what people don't like.

The big downside is the paradigm shift + inscrutable error messages.

It will make you feel dumb and/or unproductive for a very long time.

A lot of the type errors can be fixed by a compiler that cares more about error messages, and OCaml in particular could do well with terminators after e.g. match blocks to improve both ambiguity and error reporting. Some of the type errors can't easily be fixed; wrong function application by omitting some value somewhere has, so far, always led to misleading errors; are there any other examples than Elm that address these?

I also switched from ML to Haskell to Rust.

To me, the main downside of ML is the explicitly instantiated module systems not tied to the filesystem hierarchy.

Once you get used to traits and parameterised trait instances, bringing every module instantiation into scope after separately importing them is just slooow.

The standard library situation is also somewhat not great. Maybe I just never got used to it, but I sense that there are people think Jane Street Base is a must, and people who think it's completely overkill. OCaml programmers have a weird fetish with micro-optimization because the compiler lets you think about the asm output. It's a remarkable property of an otherwise high-level language that you can really care about the asm output.

StopDisinfo910•2h ago
> OCaml in particular could do well with terminators after e.g. match blocks to improve both ambiguity and error reporting

You can use either begin/end or parentheses as terminators around any blocks of Ocaml for exactly that purpose.

> To me, the main downside of ML is the explicitly instantiated module systems not tied to the filesystem hierarchy.

That's one of the greatest strenght of ML actually and especially Ocaml where parametrised modules are everywhere and a required building block of generic code. A significant part of why the article complains about type for exemple is because the author doesn't know how to use the module system.

> Once you get used to traits and parameterised trait instances

I like modules a lot more. It makes the code a lot clearer than traits.

> The standard library situation is also somewhat not great. Maybe I just never got used to it, but I sense that there are people think Jane Street Base is a must

The standard library is a lot more complete nowadays that it was some years ago and Base is used by pretty much nobody outside of JaneStreet.

ernst_klim•2h ago
> there is no equivalent to Java's toString or Rust's #[derive(Debug)]

There are devivers and a Format module for pretty printing.

https://github.com/ocaml-ppx/ppx_deriving

https://ocaml.org/manual/5.4/api/Format.html

sanskarix•2h ago
what's always wild to me about these language debates is how much energy people spend defending syntax preferences instead of asking "does this help me ship?"

OCaml's real pain point isn't the syntax - it's that you can't hire for it. if you're building a startup and you pick OCaml, you've just cut your hiring pool by 95%. that's way more painful than learning a different way to write functions.

the whole "academic vs practical" thing is backwards. academic languages often have killer features that would save you real pain, but if your team can't debug it or you can't find Stack Overflow answers at 2am, none of that matters. language choice is a business decision, not a technical purity contest.

yodsanklai•2h ago
> if you're building a startup and you pick OCaml, you've just cut your hiring pool by 95%. that's way more painful than learning a different way to write functions.

You can hire anyone who already understands pattern matching, closures, map/fold (these are more and more common constructs nowadays) and train them to learn OCaml. It's a simple language overall, especially if your codebase doesn't use any complicated features.

hocuspocus•2h ago
> OCaml's real pain point isn't the syntax - it's that you can't hire for it. if you're building a startup and you pick OCaml, you've just cut your hiring pool by 95%. that's way more painful than learning a different way to write functions.

I hear this a lot about Scala and it's never been an issue in practice.

A smaller pool of candidates makes hiring easier, I'd much rather screen 20 résumés than 400. The typical candidate, whether experienced or willing to learn, is also better on average.

"We can't find qualified developers" usually tells more about the employer, in reality that means:

- We aren't willing to pay market rates.

- We don't invest in even the most basic on-the-job training.

- Seniority distribution is junior heavy; we expect one senior developer per team who can mentor all the other ones.

Or a combination of the above.

I know two relatively small companies that use OCaml, they don't pay anywhere near Jane Street salaries, but they're willing to hire people who show interest in the language and invest a little in their training. This works. On my end I've hired several people coming almost purely from Python, after a few weeks they contribute to fairly advanced Scala codebases.

christophilus•1h ago
Nah. You have to change how you hire. You can’t do the “45 years OCaml experience required” thing. But you absolutely can hire for obscure languages.
cmrdporcupine•53m ago
It's almost certainly the opposite problem. You can't find a job in it.

There's a whole pool of people out there like myself who like to work in languages like this but don't because there's very few jobs in them.

When I heard people say they "can't hire for tech X" I usually find there's something else going on. I just left a job where they said they "couldn't hire" for Rust -- let me tell you... Finding Rust talent is not their problem. They have far more serious problems from which "retaining Rust talent" is a symptom.

The challenge with making good software is not language choice. It's communication and culture and making good foundational choices about software architecture that fit your problem domain. Writing code is the easy part, usually.

Hendrikto•2h ago
> Usually partial function application is a bug

Dude, what?

jlouis•15m ago
It's my favorite line of the whole thing. There's so much which can be derived from that single statement.
okhobb•1h ago
My favorite part about Ocaml is the type checker fwiw. Pretty much as soon as I appease it I'm guaranteed a 'working' program that usually does what I intended.
adamchol•1h ago
I've been writing OCaml for quite some time now and I don't think any of those "pain points" are "pain" or really any problem with the language. I think they're more like a preference. The syntax or no forward references are just decisions that makes the language good in some ways and bad in others, and seems like you just really don't like the cons.

Also, isn't freedom of annotating a function a good thing, instead of having a requirement on it? You can just explicitly annotate some stuff when you have a type error that doesn't feel right!

OCaml is way more simple from the type system perspective than Rust, I think it makes it great when you need a lot of iteration on you code.

One thing I do agree on are problems with the ecosystem. Maybe not quite in the specific area described here but man we got some problems in IO/concurrency/asynchrony space. Making a GOOD standard for it would just improve all our lives as OCaml developers.

myaccountonhn•56m ago
I employ some strategies when I work with OCaml to avoid some of these pain points: I avoid libraries with poor documentation, funky types, and preprocessors that don't throw proper error messages. So I skip ocamllex, Menhir and Reasonml because I've found like OP that the DX is too poor..

But otherwise I don't particularly agree with OPs pain points. I personally find OCaml's syntax to be great. Very easy to write and read once you're used to it. And I previously thought that it's very important to annotate all types, as it would help with my thinking, but these days I find I'm more productive when I write out the code without types, maybe add a type here and there. I only annotate if OCaml's deduced type is too complex or generic.

phplovesong•34m ago
Im sorry but this reads like a noob trying out ocaml for the first time and beeing annoyed because it does not work like Java.
shortrounddev2•8m ago
My main gripe with ML variants is the poor syntax around async (F#). For networked (web) applications, you begin to find that many or most of your functions are async, and wrapping them in computation blocks which come with their own internal syntax that eliminates a lot of the elegance of ML and makes your code look more imperative often feels like it defeats the purpose of the language.

In F#

    let Foo =
        async {
            let! data = getData() |> Async.AwaitTask
            return data.value
        }
Is this the best they can do? C# just has

    async Task<Data> Foo() =>
        (await getData()).value;
Ive always wanted ML syntax like this:

    let async Foo =
        let data = await getData
        data.value
I just dont write a ton of pure functions which have no I/O dependencies

What Is a Manifold?

https://www.quantamagazine.org/what-is-a-manifold-20251103/
60•isaacfrond•3h ago•18 comments

You can't cURL a Border

https://drobinin.com/posts/you-cant-curl-a-border/
267•valzevul•12h ago•128 comments

This Month in Ladybird – October 2025

https://ladybird.org/newsletter/2025-10-31/
101•exploraz•1h ago•11 comments

Bloom filters are good for search that does not scale

https://notpeerreviewed.com/blog/bloom-filters/
39•birdculture•3h ago•4 comments

My Truck Desk

https://www.theparisreview.org/blog/2025/10/29/truck-desk/
175•zdw•10h ago•29 comments

Things you can do with diodes

https://lcamtuf.substack.com/p/things-you-can-do-with-diodes
269•zdw•13h ago•77 comments

AI's Dial-Up Era

https://www.wreflection.com/p/ai-dial-up-era
350•nowflux•15h ago•289 comments

When stick figures fought

https://animationobsessive.substack.com/p/when-stick-figures-fought
223•ani_obsessive•12h ago•67 comments

Reverse-engineered CUPS driver for Phomemo receipt/label printers

https://github.com/vivier/phomemo-tools
31•Curiositry•1w ago•7 comments

The Farmer Was Replaced [video]

https://www.youtube.com/watch?v=aP2WHQKJVsw
15•surprisetalk•1w ago•1 comments

A friendly tour of process memory on Linux

https://www.0xkato.xyz/linux-process-memory/
174•0xkato•13h ago•16 comments

Ask HN: Why are most status pages delayed?

9•2gremlin181•32m ago•3 comments

Ask HN: Who is hiring? (November 2025)

354•whoishiring•21h ago•390 comments

Lessons from interviews on deploying AI Agents in production

https://mmc.vc/research/state-of-agentic-ai-founders-edition/
70•advikipedia•5h ago•63 comments

Tenacity – a multi-track audio editor/recorder

https://tenacityaudio.org
52•smartmic•1w ago•17 comments

Learning to read Arthur Whitney's C to become smart (2024)

https://needleful.net/blog/2024/01/arthur_whitney.html
305•gudzpoz•20h ago•128 comments

Resolution limit of the eye – how many pixels can we see?

https://www.nature.com/articles/s41467-025-64679-2
52•bookofjoe•1w ago•31 comments

Show HN: Yourshoesmells.com – Find the most smelly boulder gym

https://yourshoesmells.com
17•boshenz•3h ago•8 comments

The Mack Super Pumper was a locomotive engined fire fighter (2018)

https://bangshift.com/bangshiftxl/mack-super-pumper-system-locomotive-engine-powered-pumper-extin...
144•mstngl•16h ago•102 comments

Pain Points of OCaml

https://quamserena.com/2025-11-03/pain-points-of-ocaml
43•quamserena•7h ago•30 comments

Guideline has been acquired by Gusto

https://help.guideline.com/en/articles/12694322-guideline-has-joined-gusto-faqs-about-our-recent-...
116•surprisetalk•14h ago•94 comments

The Case That A.I. Is Thinking

https://www.newyorker.com/magazine/2025/11/10/the-case-that-ai-is-thinking
202•ascertain•19h ago•622 comments

The Case Against PGVector

https://alex-jacobs.com/posts/the-case-against-pgvector/
338•tacoooooooo•1d ago•128 comments

Ask HN: How to deal with long vibe-coded PRs?

134•philippta•6d ago•240 comments

State of Terminal Emulators in 2025: The Errant Champions

https://www.jeffquast.com/post/state-of-terminal-emulation-2025/
233•SG-•22h ago•213 comments

Ask HN: Who wants to be hired? (November 2025)

179•whoishiring•21h ago•319 comments

First recording of a dying human brain shows waves similar to memory flashbacks (2022)

https://louisville.edu/medicine/news/first-ever-recording-of-a-dying-human-brain-shows-waves-simi...
249•thunderbong•1d ago•236 comments

A visualization of the RGB space covered by named colors

https://codepen.io/meodai/full/zdgXJj/
277•BlankCanvas•5d ago•72 comments

Inside an Isotemp OCXO107-10 Oven Controlled Crystal Oscillator

https://tomverbeure.github.io/2025/10/26/Inside-an-Isotemp-OCXO107-10.html
51•thomasjb•1w ago•2 comments

Gallery of wonderful drawings our little thermal printer received

https://guestbook.goodenough.us
113•busymom0•18h ago•28 comments