Result module in reasonml.github.io/en/try?


#1

I’m just learning ReasonML. There seems to be an issue with the Result module in reasonml.github.io/en/try. As one example of what I’m asking about: Even though both the Option module and the Result module have getExn according to www.reasonml.org/belt_docs, the expression

Belt.Option.getExn;

compiles in reasonml.github.io/en/try, but

Belt.Result.getExn;

does not.

I’m wondering whether the version of Belt used in reasonml.github.io/en/try is too old to contain Result? Or is there some other reason for the outcome when trying to compile these expressions?