Rebol Programming/reform
USAGE:
REFORM value
DESCRIPTION:
Forms a reduced block and returns a string.
REFORM is a function value.
ARGUMENTS
- value -- Value to reduce and form (Type: any)
SOURCE CODE
reform: func [
"Forms a reduced block and returns a string."
value "Value to reduce and form"
][
form reduce :value
]