Results 718 comments of OvermindDL1

> I usually browsing code directly on Github and I run Windows which Ocaml does not play nice with :(. It 'used' to not play nice with. Now there are...

_/me would vote for `

> :) Hehe, as long as the precedence is correct. ^.^ Speaking of, when defining an operator why not define it with a precedence inline like you can in some...

I like the OCaml'y style of: ```ocaml if blah then bloop else bleep ``` Unless used as a kind of early out or so then this common: ```ocaml if not...

When the branches are complex then in OCaml I've always done: ```ocaml if x then let y = 1 in y else let y = 2 in y ``` So...

> I have been bitten enough by indentation based syntax to prefer non-whitespace sensitivity but there are some unfortunate ambiguities that would need resolving to let that happen. Well the...

> Like /format@master ? sunglasses Whoo! > Tools or convenention can make it clear when one is doing it wrong. I don't like the idea of needing to help someone...

I'd be good with `{`/`}` as well, OCaml uses `begin`/`end` instead as `{`/`}` has specific purposes, or of course parenthesis are an option but I find them ugly in such...

If you need help implementing anything of the sort in pure elixir, just ask. Honestly though I still learn toward Elchemy should just become an OCaml backend that compiles to...

> @OvermindDL1 And it would allow to compile Reason to Elixir too ^^ Hah, entirely true yeah. JSOO would be a good project to mimic for such a backend, it...