我如何在 Common Lisp 中重新实现反引号?

发布于 2024-10-09 23:09:43 字数 285 浏览 1 评论 0原文

我必须重新制作反引号(使用取消引用和取消引用拼接)而不使用内置读取器宏 `,@ 预期的行为是:

> (BACKQUOTE (A B (LIST ‘C ‘D) (COMA (LIST ‘E ‘F)
                               (COMA-AT (LIST ‘G ‘H)))
(A B (LIST ‘C ‘D) (E F) G H)

我尝试使用宏来执行此操作,但结果不是预期的。

非常感谢!!!

有什么可以做的提示吗?

I have to remake backquote (with unquote and unquote-splicing) without using the builtins reader macros `,@
The behaviour expected is:

> (BACKQUOTE (A B (LIST ‘C ‘D) (COMA (LIST ‘E ‘F)
                               (COMA-AT (LIST ‘G ‘H)))
(A B (LIST ‘C ‘D) (E F) G H)

I try to do it with a macro but the results are no the expected.

Many thanks!!!

Any hints of what could be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最终幸福 2024-10-16 23:09:43

对于那些在尝试理解保罗·格雷厄姆代码时接受简单且不正确的解决方案但它有效的人:

(defmacro backquote (expr)
  (labels
      ((step (p n)
             (append p
                     (if (atom n) (list n)
                       (case (car n)
                         ('comma (list (eval (cadr n))))
                         ('comma-at (eval (cadr n))))))))
    (list 'quote (reduce #'step (cons () expr)))))

欢迎更正和改进它的建议!

For Those Who well settle for a simple and incorrect solution but it works, while trying to understand the paul graham code:

(defmacro backquote (expr)
  (labels
      ((step (p n)
             (append p
                     (if (atom n) (list n)
                       (case (car n)
                         ('comma (list (eval (cadr n))))
                         ('comma-at (eval (cadr n))))))))
    (list 'quote (reduce #'step (cons () expr)))))

corrections and suggestions to improve it are welcome!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文