[REBOL] Re: How-to initialize multiple empty blocks
From: brian:hawley at: 28-Aug-2001 14:08
DocKimble wrote:>Hi Martin, > >Martin Middleton wrote: > > > > Here's what I'm trying to do: >[...] > > tables: [table1 table2 table3] > > foreach table tables [loop 10 [append table 0]] >[...] > >tables: [table1 table2 table3] >foreach table tables [set :table array/initial 10 0] > >HTH, > >DocKimbel.set [table1 table2 table3] array/initial [3 10] 0 Even simpler :) Brian Hawley