According to the official style guide, the indentation for ifs is that the condition, true-expr and false-expr are aligned on the same column. However, the current behaviour is this:
(define (example num res)
(if (equal? num res)
(do something cool)
(do something else that is cool))
According to the official style guide, the indentation for
ifs is that the condition, true-expr and false-expr are aligned on the same column. However, the current behaviour is this: