Hacker News new | ask | show | jobs
by ducharmdev 1283 days ago
Yup, you can. Also in Clojure, like this:

(< 1 2 3 4 5 6) => true

1 comments

How do you do the (IMO common) 0 <= index < length?
This you can't do, unfortunately. Would have to do something stupid like `(< -1 index length)`.