--- In [email protected], "brucexs" <bswit...@...> wrote: > > => > > local mytransfer[0]=MakeStructure(myview) > > > > > > > Not sure if you know this already but above is not valid syntax for local > > > statement > > > BTW, wanted to mention that > local myvec[expr] > is valid and equivalent to > local myvec=vec.create(expr) >
Ok, makes sense then that local myvec[1]=xyz would balk. The text of the static/local error message always stumps me. Following would be better (for me, anyway): "Invalid context or syntax for keyword LOCAL or keyword STATIC." Question, for returning multiple variables with quit() we can utilize a vector, but is it also possible to somehow stuff the variables into "arg" and quit(arg) ? Or is that a bad idea? Regards, Sheri
