< Rebol Programming

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
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.