我注意到注释宏在绑定向量中不起作用,如下所示:
(let [a "first string"
(comment
b (range 10)
c [\a \b \c]
)
d "another string"]
(str a " and " d))
除了在注释块的每一行前面放置一个分号外,还有其他方法可以在一个需要偶数个参数的绑定向量中注释几个绑定吗?
答案 0 :(得分:13)
您可以使用#_
阅读器宏,这将使读者完全忽略下一个表单:
(let [a "first string"
#_(
b (range 10)
c [\a \b \c]
)
d "another string"]
(str a " and " d))
答案 1 :(得分:5)
(let [a "first string"
_ (comment
b (range 10)
c [\a \b \c]
)
d "another string"]
(str a " and " d))