resyntax
resyntax copied to clipboard
Suggest using `displayln` instead of `display` and printing a newline
Saw this code today:
(display size)
(display "\n")
That can just be (displayln size)
. Catching this is tricky because it's kind of a splicing pattern, rather than a single expression.