6 ms·
Coffeescript is pretty damn ugly. For god sakes can people please use parenthesis when calling functions with arguments?
by quadratini 12y ago
Coffeescript is pretty damn ugly. For god sakes can people please use parenthesis when calling functions with arguments?
- briandear 12y agoWhy add unnecessary clutter?
- Gurkenmaster 12y agoLisp programmers would love to disagree
- Guthur 12y agoParenthesis are not unnecessary in Lisp they're an essential delimiter in defining an s-expression's structure (does not need to be parenthesis but some token is required). But for me that one bit of syntax is a lot less that the multitude required for many languages. For something even more syntactically minimal there is Forth.
- batiste 12y agoIt is not unnecessary, it helps the reader building a mental model about what is a function and what is not. I would concede It can be useful to create some DSL or to access an object lazily but the is a price to pay: a more opaque code base
- deleted 12y ago[deleted]
- Guillaume86 12y agoI do it in my coffeescript for function calls. You just need some guidelines and some discipline.