Rebol Programming/remold

USAGE:

edit
REMOLD value 

DESCRIPTION:

edit

Molds a reduced block and returns a string.

REMOLD is a function value.

ARGUMENTS

edit
  • value -- Value to reduce and mold (Type: any)

SOURCE CODE

edit
remold: func [
    "Molds a reduced block and returns a string." 
    value "Value to reduce and mold"
][
    mold reduce :value
]