Rebol 编程/load
外观
< Rebol 编程
LOAD source /header /next /library /markup /all
加载文件、URL 或字符串。将单词绑定到全局上下文。
LOAD 是一个原生值。
- source -- (类型:文件 url 字符串 任何-块 二进制)
- /header -- 包括 REBOL 头部对象(如果存在)。
- /next -- 仅加载下一个值。返回带有值和新位置的块。
- /library -- 强制文件成为动态库。(命令版本)
- /markup -- 将 HTML 和 XML 转换为标签和字符串的块。
- /all -- 加载所有值。不评估 REBOL 头部。
load: native[ {Loads a file, URL, or string. Binds words to global context.} source [file! url! string! any-block! binary!] /header "Includes REBOL header object if present." /next {Load the next value only. Return block with value and new position.} /library {Force file to be a dynamic library. (Command version)} /markup {Convert HTML and XML to a block of tags and strings.} /all "Load all values. Does not evaluate REBOL header." ]