[REBOL] Re: How-to initialize multiple empty blocks
From: deadzaphod:flyingparty at: 27-Aug-2001 9:25
> The following doesn't do what I want, so how do I fix it? > > tables: [table1 table2 table3] > foreach table tables [loop 10 [append table 0]]table1: copy [] table2: copy [] table3: copy [] tables: reduce [table1 table2 table3] foreach table tables [loop 10 [append table 0]] Cal Dixon