Conversation

First impression of ReasonML + React after the workshop: + Loved the type checking + Syntax is pretty natural (mostly... ## is weird) + Pattern matching is nice - Cryptic error messages - Annoying having to constantly cast types with ReasonReact
6
40
I liked how we knew the code was valid before running it, felt like it really helped us learn the syntax quickly. Problem was, when the code was invalid, the error message often didn't give us much guidance on what we should be doing differently.
1
1
Eg. Rust's errors come with an error code that you can feed back into the compiler with `rustc --explain` to get a more detailed tutorial-style explanation. Not the most ideal UX tbh (breaks flow and is not tailored to context), but I've heard beginners really sing its praises!
1