跳转到内容

Rebol 编程/echo

来自维基教科书,开放的书籍,开放的世界
ECHO target 

将控制台输出复制到文件。

ECHO 是一个函数值。

  • 目标 -- (类型:文件 无 逻辑)

(特殊属性)

[编辑 | 编辑源代码]
  • 捕获

源代码

[编辑 | 编辑源代码]
echo: func [
    "Copies console output to a file." 
    [catch] 
    target [file! none! logic!]
][
    if port? system/ports/echo [
        close system/ports/echo 
        system/ports/echo: none
    ] 
    if target = true [target: %rebol-echo.txt] 
    if file? target [
        system/ports/echo: throw-on-error [open/write/new/direct target]
    ]
]
华夏公益教科书