Hi,
instead of creating an interim list variable I wanted to use the
returned list from a function directly for further operations, but that
failed:
<hansl>
function list checkl(void)
genr time
list out = const time
return out
end function
matrix v = zeros(2,1)
list foo = checkl()
series hey1 = lincomb(foo, v) # works
print hey1
series hey2 = lincomb(checkl(), v) # doesn't work
print hey2
</hansl>
I would think that's a bug.
thanks,
sven