forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Mold
angerangel edited this page Mar 19, 2013
·
1 revision
MOLD value /only /all /flat
Converts a value to a REBOL-readable string.
MOLD is a native value.
- value -- The value to mold (any-type!)
- /only -- For a block value, mold only its contents, no outer []
- /all -- Mold in serialized format
- /flat -- No indentation
#SOURCE
mold: make native! [ [
"Converts a value to a REBOL-readable string."
value [any-type!] "The value to mold"
/only {For a block value, mold only its contents, no outer []}
/all "Mold in serialized format"
/flat "No indentation"
] ]