|
|
|
|
|
by skybrian
3496 days ago
|
|
The lack of parentheses around function calls makes it hard for people not familiar with ML-style languages to tell where the function calls are and what the arguments are to each function call. There is a wide variety of syntax among mainstream languages, but basic function calls are pretty much all the same. Take a look at Reason [1] for an example of how a functional language (OCaml in this case) can be made more familiar. [1] https://facebook.github.io/reason/ |
|