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
Show replies
Ah, right! Yeah I did notice that in the ReasonReact docs... seems like an interesting design decision, seeing as it is a common case. Elm's `Html.text` is a little more succinct, which is nice.
1
Show replies