Arbitrary Operations (functions etc.) on each item in a list
Is there a more simple way of applying the same function on each item of a list rather than iterating through a list?For example:stringlist = {"1", "2"};
numericlist = {};
for (i = 1, i<=N Items(stringlist), i++,
numericlist[i] = Num(stringlist[i])
);
show(numericlist);
Is there something simpler, something like just saying:numericlist = Num(stringlist);
but this obviously doesn't work. Any other...