On Sun, Jun 16, 2024 at 3:49 AM Sven Schreiber
<sven.schreiber(a)fu-berlin.de> wrote:
the following is something I noticed when I tried to solve another problem:
<hansl>
function bundle bL(void)
list L = 0
return _(L)
end function
open denmark # just to have a dataset in place
eval typename(bL.L) # gives "null"
</hansl>
"bL" is the name of a function, not a bundle, so "bL.L" is a nonsense
string. Is the following what you meant to write?
bundle b = bL()
eval typename(b.L)
That gives "list".
Allin