On Thu, Sep 23, 2010 at 7:46 AM, e deleflie
<edeleflie@xxxxxxxxx> wrote:
or ..
(0..3).do { arg i;
a[i].freq = d[i].x ;
}
If your start value is 0, you can write simply 3.do { ... }, or if that feels strange to write,
do(3) { ... }
SC is not Java/C. ;)
hjh