Re: [TADS] Moving stuf again...


9 Dec 1995 23:40:52 -0500

Thanks, guys, but actually Dan Shiovotz beat you both to it via e-mail
with this nifty bit of code:

moveFromTo: function (from, to)
{
local l, i;
l := from.contents;
for (i := 1; i <= length(l); ++i)
{
l[i].moveInto(to);
}
}

Same concept as the other suggestions, except that I actually understand
it (sorta, kinda...).

Neil
(exiled to AOL once again)