Hacker News new | ask | show | jobs
by veqq 14 days ago
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.
1 comments

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.
Not quitek in Scheme, parens and brackets are completely interchangeable.