Remix.run Logo
Linux mode setting, from the comfort of OCaml(roscidus.com)
66 points by ibobev 14 hours ago | 12 comments
mos87 3 hours ago | parent | next [-]

The only program written in OCaml that I think I've used is WeiDU mod installer for Infinity Engine games. Took a quick look under the bonnet too. Suffice to say, my only thought has been that should the author had chosen a sane language like say Perl (which seems to be ideally suited to what WeiDu does), the software could have been improved by many, many people.

_flux 2 hours ago | parent | next [-]

Unison could be one of the more popular programs written in OCaml.

This sort of lead into trouble at one time, as the author chose to use the OCaml serialization of data as the protocol, so synchronization between 32- and 64-bit platforms or even binaries compiled with different versions of OCaml was not possible. Eventually this was fixed, though, with custom serialization.

antonvs 2 hours ago | parent | prev [-]

That would have required the author to write Perl. Some sacrifices are not worth making.

mos87 2 hours ago | parent [-]

well then the functionality has been sacrificed - because few people besides the author were willing to brave hacking in OCaml I presume

dlcarrier 12 hours ago | parent | prev [-]

Is OCaml an especially comfortable environment to work in?

One of my favorite programs, an ncurses-based RPN calculator called Orpie, is written in OCaml, but I've never messed around with it.

poulpy123 an hour ago | parent | next [-]

> Is OCaml an especially comfortable environment to work in?

It is one of these small languages that are not completely niche: it is taught and used, you'll be able to do plenty of things, but there is not the community and resources you find in the big ones or even the mid-sized ones

Yoric 12 hours ago | parent | prev | next [-]

Well, many of the benefits of Rust, but in a simpler and garbage-collected language. Possibly the best language (alongside Haskell) if you need pattern-matching. Not quite as good if you need lots of libraries or interaction with other languages.

nextos 11 hours ago | parent | next [-]

It does have a lively ecosystem in some niches. Formal verification is one of them.

For example, https://opam.ocaml.org/packages/why3 is a little marvel of engineering.

yawaramin 4 hours ago | parent | prev [-]

Does Haskell have or-patterns yet? Last I checked OCaml still has the lead in pattern matching power :-)

antonvs 3 hours ago | parent [-]

https://ghc.gitlab.haskell.org/ghc/doc/users_guide/exts/or_p...

Crespyl 12 hours ago | parent | prev [-]

Hey, I've also used and loved Orpie!

I'm not extremely familiar with any of the ML family, but Eric Lippert had a blog series I followed for a while in which he was writing a Z-Machine in OCaml: https://ericlippert.com/2016/02/01/west-of-house/ I followed along but in Rust for a while, though I think he paused the project at some point and I lost steam.

I learned more about Rust (which, IIRC was first implemented in OCaml) than I did about OCaml, but it's always seemed like a nice language.

yawaramin 4 hours ago | parent [-]

Lippert started doing that blog series as part of his learning journey when he got hired at Facebook to write OCaml. Just a fun historical fact.