为什么不能在 Rebol 中重写内置函数?
我创建了这个, cloneset: :set set: func[word [word!] value][ if/else (type? get word) = list! [ print "list is immutable" ][ cloneset word v…
在 REBOL 中动态添加单词到上下文
想象一下以下 REBOL 代码: foo: context [bar: 3] 我现在有一个上下文 foo,其中定义了 'bar。 如何动态地将新单词注入到此上下文中? 是否可以? 我…
- 共 1 页
- 1