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