跳转到内容

The Wikibooks community is developing a policy on the use of generative AI. Please review the draft policy and provide feedback on its talk page.

Rebol 编程/别名

来自

用法

[编辑 | 编辑源代码]
ALIAS word name 

描述

[编辑 | 编辑源代码]

为单词创建备用拼写。

ALIAS 是一个原生值。

参数

[编辑 | 编辑源代码]
  • word -- 要别名的单词 (类型:单词)
  • name -- 别名的名称 (类型:字符串)

源代码

[编辑 | 编辑源代码]
alias: native[
    "Creates an alternate spelling for a word." 
    word [word!] "Word to alias" 
    name [string!] "Name of alias"
]

华夏公益教科书