REBOL Programming/alias

      USAGE:

      ALIAS word name 
      

      DESCRIPTION:

      Creates an alternate spelling for a word.

      ALIAS is a native value.

      ARGUMENTS

      • word -- Word to alias (Type: word)
      • name -- Name of alias (Type: string)

      SOURCE CODE

      alias: native[
          "Creates an alternate spelling for a word." 
          word [word!] "Word to alias" 
          name [string!] "Name of alias"
      ]
      
      {{BookCat}}
      
      Last modified on 27 October 2012, at 22:19