logoalt Hacker News

veqqyesterday at 4:06 PM1 replyview on HN

You can... just not use square (and curly) brackets. Instead of `[1 2 3]` just write `(array 1 2 3)`. Instead of `(fn [x] (+ 1 x))` just write `(f (x) (+ 1 x))`. They are never necessary.


Replies

BoingBoomTschakyesterday at 4:39 PM

Huh! So like some Schemes and Racket? Yet I must read them in code that isn't mine, which is a large part of the problem.

show 1 reply