[REBOL] Re: How to form a block containing two Rebol filenames?
From: moliad:aei:ca at: 17-Aug-2004 23:38
PSA102 wrote:
> Can someone suggest how I can convert two words containing REbol
> filenames to a block consisting of those two Rebol filenames?
fileblock: reduce [ firstfile nextfile ]
reduce is a very usefull in that it replaces a word by its value. Note that reduce also
evaluates any code in that block so you could also have done:
stringblk: reduce [ to-string firstfile to-string nextfile ]
HTH
-MAx