[TIB] Re: lists help


[Prev][Next][Index][Thread]

[TIB] Re: lists help




From: "Joshua Abts" <mariners@accn.org>
>Is it possible to make a list file and then make it self expand so like i
>could give it a dimension of 1 and then i could just do
>info->list[dim(list)+1]?

Which calculator? (By your example, it appears 89/92+.) Your example should
work. (Just tried it.) If you want to expand the list by several elements at
once, though, you could do something like:

:{3,5,5}\->\list
:augment(list,newList(3))\->\list

That would make 'list' be {3,5,5,0,0,0}. Then you could store the values
where the new zeroes are.

HTH,
Travis