Rebol 世界上最小的 Http 服务器:为什么要先等待监听端口?
在这段代码中 web-dir: %./www/ ; the path to rebol www subdirectory listen-port: open/lines tcp://:80 ; port used for web connections buffer:…
Rebol 中是否有更优雅的语法来执行此操作?
我正在写一篇关于 Rebol 对象持久性的教程,但我不确定我的方式是否是最好的 假设 %config.txt 包含 a: 1 b: 2 我们然后可以将其加载 config: constru…
为什么不能在 Rebol 中重写内置函数?
我创建了这个, cloneset: :set set: func[word [word!] value][ if/else (type? get word) = list! [ print "list is immutable" ][ cloneset word v…
从hotmail下载邮件
我想编写从 hotmail 下载邮件的脚本。 Gmail 和 Hotmail 都允许通过端口 995 上的安全 POP 进行访问。 我的脚本在 Gmail 上运行良好...但是在我将线路…
Rebol 解析:处理空格和复制 var
我读了第15章: http://www.rebol.com/docs/core23/ rebolcore-15.html#section-8” spacer: charset reduce [tab newline #" "] spaces: [some space…
关于 MS Windows 的 QuickTime API 有哪些好的教程?
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
如何访问 REBOL 标头?
假设我在另一个文件 (imported.r) 中有一个 REBOL 脚本,如下所示: REBOL [ author: {Greg} title: {Awesome REBOL Code} ] x: 3 如何将此文件导入到…
在 REBOL 中动态添加单词到上下文
想象一下以下 REBOL 代码: foo: context [bar: 3] 我现在有一个上下文 foo,其中定义了 'bar。 如何动态地将新单词注入到此上下文中? 是否可以? 我…
什么是计算笛卡尔积的好的非递归算法?
注意 这不是 REBOL 特定的问题。 您可以用任何语言回答。 背景 REBOL 语言支持创建特定于领域的语言,在 REBOL 中被称为“方言”用语. 我已经为列表推…
我应该如何称呼执行列表推导式的 REBOL 函数?
REBOL 没有内置的方法来执行列表推导。 然而,REBOL 有一个强大的工具(称为parse),可用于创建特定于域的语言(DSL)。 我使用 parse 来创建这样一…