Bruce, any chance to make it possible to return a handle, i.e., to maintain the linkage in a handle used in quit(handle) ?
e.g.:
local xvec = funcTest()
win.debug("xvec exists:", xVec.exists, "xVec[0]:",xVec[0])
quit
Function funcTest()
local bVec = vec.create(50)
bVec[0]=23
quit(bVec)
