Hacker News new | ask | show | jobs
by shawn_w 430 days ago
One style suggestion: nested `for` expressions can be combined into a single `for*`, helping reduce indentation depth:

    (for* ([i height]
           [j width])
      ...)