You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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))
The text was updated successfully, but these errors were encountered:
According to the official style guide, the indentation for
if
s is that the condition, true-expr and false-expr are aligned on the same column. However, the current behaviour is this:The text was updated successfully, but these errors were encountered: