NAME
Syntax NAME object name 
 
Explanation NAME defines a variable by assigning the value of the first input to the name of the second input. Once you have created the variable, you may obtain its contents by using :name. Think of the colon (:) as "the value of name."

NAME is equivalent to MAKE except that inputs are in reverse order.

See also LOCAL.
 

Examples NAME 73 "NUMBER 
:NUMBER 
Result: 73 
NAME "MAGENTA "COLOR 
:COLOR 
Result: MAGENTA 
NAME FIRST [A B C D] "CHOICE 
:CHOICE 
Result: A 

TopIndex