On Sun, 30 Sep 2018, Sven Schreiber wrote:
Hi,
leaving out the mandatory second arg to lags() doesn't give an error:
<hansl>
open denmark
list X = lags(4) # "works"
list X print # empty
</hansl>
I think it should.
Agreed. That's now fixed in git. Just to be explicit, the following
will still be acceptable, producing an empty list:
list L = null
list X = lags(4,L)
Allin