Learning OCaml in 2023
sancho.dev
Learning OCaml in 2023
1–7 of 7 posts
Re: Learning OCaml in 2023
#2This is exactly what I've been looking for! I really want to get into ML (thanks to that Rust gateway drug), and I found the whole ecosystem pretty confusing.
Re: Learning OCaml in 2023
#3This is exactly what I've been looking for! I really want to get into ML (thanks to that Rust gateway drug), and I found the whole ecosystem pretty confusing.
Hey, thanks! This tries to solve exactly that, let me know if there's anything else that feels that needs an intro to OCaml community.
Re: Learning OCaml in 2023
#4Is Meta still actively using it?
Re: Learning OCaml in 2023
#5Is Meta still actively using it?
one of their employees could doubtless say more, but at the very least I'm familiar with the actively developed https://github.com/facebook/pyre-check
Re: Learning OCaml in 2023
#6I've been holding out OCaml because it didn't have good concurrency support, but that seems to have changed recently. I've thoroughly enjoyed learning Haskell, and I'm sure ML has a few treasures of its own to give.
Re: Learning OCaml in 2023
#7I've been holding out OCaml because it didn't have good concurrency support, but that seems to have changed recently. I've thoroughly enjoyed learning Haskell, and I'm sure ML has a few treasures of its own to give.
OCaml has had great concurrency support for quite a long time, the Lwt promises library offers async I/O and works really well. Now, with OCaml 5 shipping Multicore support, even more performance will be unlocked, potentially (it really depends on the design and workload characteristics of the application).