Hacker News new | ask | show | jobs
by retzkek 2131 days ago
However, prefix notation becomes much easier to read and reason about when you have more than two things to compare:

    (> 3 2 1 ...)
vs

    (3 > 2) && (2 > 1) && ...