REBOL 元编程问题
我对 REBOL 很陌生(即昨天)。
我在这里使用术语“元编程”,但我不确定它是否准确。无论如何,我正在尝试了解 REBOL 如何执行单词。举个例子,这里是 TCL 中的一些代码:
> # puts is the print command > set x puts > $x "hello world" hello world
我尝试了很多不同的方法来在 REBOL 中执行类似的操作,但无法获得完全相同的效果。有人可以提供几种不同的方法来做到这一点(如果可能的话)?
谢谢。
I'm very new to REBOL (i.e. yesterday).
I am using the term "metaprogramming" here, but I'm not sure if it is accurate. At any rate, I'm trying to understand how REBOL can execute words. To give an example, here is some code in TCL:
> # puts is the print command > set x puts > $x "hello world" hello world
I've tried many different ways to do something similar in REBOL, but can't get quite the same effect. Can someone offer a few different ways to do it (if possible)?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有几个方法:
Here's a few ways: