(defmacro string-it-6ren">
gpt4 book ai didi

Clojure 形式到字符串

转载 作者:行者123 更新时间:2023-12-01 07:19:54 26 4
gpt4 key购买 nike

有没有办法将 Clojure 形式转换为字符串?
例如。转变:

(and (f 1) (g 3))

到:
"(and (f 1) (g 3))"

最佳答案

=> (defmacro string-it [x] (str x))
#'user/string-it
=> (string-it (+ 1 2))
"(+ 1 2)"

关于Clojure 形式到字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15003103/

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