[REBOL] How do I save and restore an array of objects Re:(4)

2000-03-09 Thread Al . Bri
bobr asked: > Is there a situation where 'reduce should not be used? When you only want one result from a script or block, use 'do. When you want many results from a script or block, use 'reduce. Andrew Martin ICQ: 26227169 http://members.xoom.com/AndrewMartin/ -><-

[REBOL] How do I save and restore an array of objects Re:(4)

2000-03-09 Thread icimjs
Hi Bob, A) do works when you only want to load a single object. It's like saying: do [make object! [word: 'something]] which - of course - returns a single object, namely the last object (and here only object) found in the block (returned by load), and not a block containing all objects that we