本文介绍了在Clojure中阻止注释的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Clojure中注释多行?
解决方案
实际上,有一种方法!
(注释
(defn hey []
(Hey there!))
检查一下!
)
只要在(comment ..)中加入您的评论:)
How do I comment multiple lines in Clojure?
解决方案
Actually, there is a way!
(comment
(defn hey []
("Hey there!"))
Check me out!
)
Just wrap your comments in (comment ..) :)
Have fun!
这篇关于在Clojure中阻止注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!