Rebol Programming/reform

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

USAGE:

[edit | edit source]
REFORM value 

DESCRIPTION:

[edit | edit source]

Forms a reduced block and returns a string.

REFORM is a function value.

ARGUMENTS

[edit | edit source]
  • value -- Value to reduce and form (Type: any)

SOURCE CODE

[edit | edit source]
reform: func [
    "Forms a reduced block and returns a string." 
    value "Value to reduce and form"
][
    form reduce :value
]