Rebol Programming/default
USAGE:
editDEFAULT 'word value
DESCRIPTION:
editSet a word to a default value if it hasn't been set yet.
DEFAULT is a function value.
ARGUMENTS
edit- word -- The word (use :var for word! values) (Type: word set-word lit-word)
- value -- The value (Type: any)
SOURCE CODE
editdefault: func [ {Set a word to a default value if it hasn't been set yet.} 'word [word! set-word! lit-word!] "The word (use :var for word! values)" value "The value" ][ unless all [value? word not none? get word] [set word :value] :value ]