Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(show-data 'YHOO :config 'my-config)
我看到了一些类似于上面一行的 Scheme 代码(在 Guile 中),并且对冒号语法感到困惑:config。
:config
这有什么样的语言特点?它是 Scheme 的固有特性,还是专门为 Guile 库设计的?它是如何工作的?我一直在网上搜索,但仍然一无所获。谢谢。
它是一个关键字,其目的是使接收可选参数的过程的调用更容易和方便。
您可以在 Guile 参考手册的这一部分中阅读有关此功能的更多信息。