Rebol Programming/remold
USAGE:
REMOLD value
DESCRIPTION:
Molds a reduced block and returns a string.
REMOLD is a function value.
ARGUMENTS
- value -- Value to reduce and mold (Type: any)
SOURCE CODE
remold: func [
"Molds a reduced block and returns a string."
value "Value to reduce and mold"
][
mold reduce :value
]