Rebol Programming/remold

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

REMOLD value 

DESCRIPTION:[edit | edit source]

Molds a reduced block and returns a string.

REMOLD is a function value.

ARGUMENTS[edit | edit source]

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

SOURCE CODE[edit | edit source]

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