The difference is that datatype information is
lost sometimes. See:

        type? load mold none ; == word!
        type? load mold/all none ; == none!

mold converted none to a string! "none", then
load converted it to a word! 'none.

mold/all converted none to a special new syntax which
load understands and which preserves the datatype
information: "#[none]"

Now when that is loaded you get the true rebol
value that you started with: none, which has
datatype none!

Other values also have the same problem, and are
solved in the same way.

The /all refinement of mold is only available in
the latest betas, and in Rebol/Base.

Anton.

> Also I did not manage to see what was exactly the difference 
> beetween doing "do
> load mold/all" and simply doing "do load mold" in your example.
> Both seems to produce the same result, so what benefit does the 
> /all exactly
> bring in that case ?
> 
> Best regards,
> Laurent

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to