reasonml / reason

Simple, fast & type safe code that leverages the JavaScript & OCaml ecosystems

Home Page:http://reasonml.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

local open + let bindings

anmonteiro opened this issue · comments

let y = Promise.Ops.(
  let* x = Js.Promise.resolve(42);
  Js.Promise.resolve(x * 2);
);

this currently produces a syntax error "unclosed parenthesis"