Hi,
I'm trying (for a shiny new function package) to add a graph to the icon view/window
within a function context.
Example (with denmark.gdt):
function void myfunc(list mylist)
testgraph <- gnuplot mylist
end function
list mylist = LRM LRY
myfunc(mylist)
But this isn't working, it's only saving the gnuplot commands to a .plt file, as
if the "testgraph <-" part weren't there.
I understand that the inner scope of a function isn't supposed to affect the outer
scope; however, I think the functionality would be useful. But I admit it's probably
difficult to get this right conceptually, or isn't it?
thanks,
sven