[REBOL] Re: Finding a value in a series?
From: arolls:bigpond:au at: 22-May-2001 2:47
Try this: blk: [[1 a b][2 c d][3 e f]] idx: 1 while [not (first blk/:idx) = 2][idx: idx + 1] var: remove copy blk/:idx remove at blk idx
[REBOL] Re: Finding a value in a series?From: arolls:bigpond:au at: 22-May-2001 2:47
|