跳转到内容

Rebol 编程/get

来自维基教科书,开放世界中的开放书籍
GET word /any 

获取单词的值或对象的多个值。

GET 是一个原生值。

  • word -- 要获取的单词(类型:any-word 对象 none)
  • /any -- 允许任何类型的值,即使是未设置的值。

源代码

[编辑 | 编辑源代码]
get: native[
    "Gets the value of a word or values of an object." 
    word [any-word! object! none!] "Word to get" 
    /any "Allows any type of value, even unset."
]
华夏公益教科书