Dear all,
I want to get rid of the "time" variable from a list. This works fine
out of a function but not within a function:
<hansl>
open denmark.gdt -q
list y = const time
# WORKS
y -= const
y
y -= time
y # list is null
# DOESN'T WORK
function void foo (list y)
y -= const
y
y -= time
y # time is still in the list
end function
foo(y)
I am using the current git version on ubuntu.
Best,
Artur