parse/invalid-reader-comment
This happens when #_ is not followed by a form to skip.
Mitigations
Either place a form immediately after #_ or remove the reader comment. For example:
(let [a (get-a!)]
#_(println :a a)
a)
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
This happens when #_ is not followed by a form to skip.
Either place a form immediately after #_ or remove the reader comment. For example:
(let [a (get-a!)]
#_(println :a a)
a)