REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 3-Aug-2010 Edit History  

REBOL 3 Functions: reform

reform  value

Forms a reduced block and returns a string.

Arguments:

value - Value to reduce and form

See also:

form   mold   remold   join   rejoin  

Description

Identical to FORM but reduces its argument first. Spaces are inserted between each value.

probe reform ["the time is:" now/time]
"the time is: 17:47:54"
probe form ["the time is:" now/time]
"the time is: now/time"


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin