Am 06.12.19 um 02:31 schrieb Allin Cottrell:
On Thu, 5 Dec 2019, Allin Cottrell wrote:
> On Thu, 5 Dec 2019, Sven Schreiber wrote:
>
>> Something like this:
>>
>> bundle b = <whatever>
>>
>> loop foreach i b
>> eval b["@i"]
>> endloop
>
> Good idea [...]
And it's now in git (via "$i"), as in
<hansl>
bundle b = defbundle("x", 13, "m", I(3), "s",
"foo")
loop foreach i b
eval b["$i"]
endloop
</hansl>
Hi Allin, using todays git version, I obtain the following error when
trying to run your example:
<error>
? eval b["b"]
"b": no such item
> eval b["$i"]
</error>
Artur