跳到内容

Rebol 编程/has

来自维基教科书,开放的书籍,开放的世界
HAS locals body 

定义一个具有局部变量但没有参数的函数的快捷方式。

HAS 是一个函数值。

  • locals -- (类型:块)
  • body -- (类型:块)

源代码

[编辑 | 编辑源代码]
has: func [
    {A shortcut to define a function that has local variables but no arguments.} 
    locals [block!] 
    body [block!]
][function [] locals body]
华夏公益教科书