Steve Wampler wrote:
> ghoulieh2@[EMAIL PROTECTED]
wrote:
>> I want to make a few lists of tables, but I don't know exactly what
>> I'm doing.
>> tbl := list(16, table());
>> This just makes the lists that all point to the same table, how do you
>> make them have their own table?
>
> This should work (untested!):
>
> every put(!(tbl := list(16)), table())
Oh, and my son sent me the following idiom a few months ago:
procedure list(C)
L := []
while put(L, @[EMAIL PROTECTED]
(C[1]))
return L
end
which works when invoked as (say):
alist := list{(1 to 16, table())}
[note the curly braces!]
--
Steve Wampler -- swampler@[EMAIL PROTECTED]
gods that smiled on your birth are now laughing out loud.


|