Live data from Hacker News

Viewing profile — hongboz

hongboz

HN member
Joined
Thu, Jan 07, 2016, 11:55 PM UTC
HN karma
22
Public activity
9 items

About hongboz

No profile information was provided.

Recent public activity

  1. comment
    Comment #12263599

    For people who want to do typed functional programming on JS platform, there is another candidate: BuckleScript for OCaml: https://bloomberg.github.io/bucklescript/js-demo/ The com…

  2. comment
    Comment #12172515

    For bucklescript, the performance is excellent, better than handwritten JS: https://github.com/bloomberg/bucklescript#more-examples-1

  3. comment
    Comment #12172371

    FYI: you can try bucklescript compiler in browser, and see generated JS code side by side instantly https://bloomberg.github.io/bucklescript/js-demo/

  4. comment
    Comment #11479209

    Hi, there is a link here: https://github.com/bloomberg/bucklescript/wiki/Difference-fr...

  5. comment
    Comment #10867187

    List.fold_left is compiled into a while loop in ocamlscript. The main reason that I used for loop is that the generated code is the same as hand written js, so the comparison is mo…

  6. comment
    Comment #10866113

    Hi, thanks for your interest in it. This project has been released to exchange some ideas and collect feedback from the OCaml and JavaScript communities. It is still in an very ear…

  7. comment
    Comment #10865661

    self tail call is supported. mutual recursive tailcall can be done partially, but there is not a strong guarantee

  8. comment
    Comment #10862249

    actually we have great relationship with Lexifi, and we did exchange some ideas about ocamlscript before, I think mostly we are on the same page, there is enough room for two compi…

  9. comment
    Comment #10861834

    Author here, just created a new account : ). I think ocamlscript is complementary to js_of_ocaml, actually it is inspired from js_of_ocaml. For those who like to write ocaml only a…