|
|
1
4
这个宏有帮助吗?它将let转换为一系列def,以便您可以计算子表达式:
我在这里写了一个解释: http://www.learningclojure.com/2010/09/astonishing-macro-of-narayan-singhal.html |
|
|
2
2
读完这篇文章后,我最喜欢的新方法是
在函数内部,按“t”检查值。(我用的是swank clojure) 资料来源: http://hugoduncan.org/post/2010/swank_clojure_gets_a_break_with_the_local_environment.xhtml |
|
|
3
1
对于跨越多个函数的bug,我喜欢 Trace macro 用于报告每个函数的调用和返回。 |
|
|
5
1
def let的函数版本 here .
|