Axel Rauschmayer
Axel Rauschmayer
See this section in the readme: https://github.com/rauschma/async-off#what-would-i-use-this-command-for
@sunithex Yes it is finished and, sadly, outdated by now. I’ve added a warning here: http://reasonmlhub.com/exploring-reasonml/ch_about-book.html#warning-this-book-is-outdated
@yangshun Fixed, thanks!
Thanks, will be fixed in the next release!
@geraldodev Could you put lines with three backticks before and after your code, like this: ```` ``` this is the code ``` ```` Currently your comments are hard to read...
@eugrdn I take it you understand _why_ the operation is slow? If you concatenate often, it’s better to switch to arrays. ReasonML also lets you convert between lists and arrays,...
Grrrr. This is the second time I got this function wrong. I want these two functions to be mutually recursive. Therefore: ``` let rec even = (x) => if (x...
`tree` is a variant, `'a` is a type variable (similar to a generic class `Tree` in Java). Explained here: http://reasonmlhub.com/exploring-reasonml/ch_variants.html The point of the example was to give a first...
@dp-1a “myBook” is the typo. It’ll be fixed in the next release. Thanks!
@approots @nhducit Thanks for your feedback! I’ve updated the chapter: http://reasonmlhub.com/exploring-reasonml/ch_syntax-overview.html