gpt4 book ai didi

clojure - 在绑定(bind)向量中注释 Clojure

转载 作者:行者123 更新时间:2023-12-04 09:55:21 25 4
gpt4 key购买 nike

我注意到注释宏在绑定(bind)向量中不起作用,如下所示:

(let [a "first string"
(comment
b (range 10)
c [\a \b \c]
)
d "another string"]
(str a " and " d))

除了在注释 block 的每一行前面放置一个分号之外,还有其他方法可以注释一个绑定(bind)向量中的多个绑定(bind),该绑定(bind)向量需要偶数个参数?

最佳答案

您可以使用 #_阅读器宏,这将使阅读器完全忽略下一种形式:

(let [a "first string"
#_(
b (range 10)
c [\a \b \c]
)
d "another string"]
(str a " and " d))

关于clojure - 在绑定(bind)向量中注释 Clojure,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8837446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com