Rebol Programming/also
USAGE:
editALSO value1 value2
DESCRIPTION:
editReturns the first value, but also evaluates the second.
ALSO is a function value.
ARGUMENTS
edit- value1 -- (Type: any-type)
- value2 -- (Type: any-type)
SOURCE CODE
editalso: func [ {Returns the first value, but also evaluates the second.} value1 [any-type!] value2 [any-type!] ][ return get/any 'value1 ]