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.
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.
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.