Hello, quick question, an easy one
I have
testFunc:{[s]
s, `new
}
tab:(sym:one
two)
update sym:testFunc[sym] from tab
but the sym, in sym:testFunc[sym] is passing the whole column, how do I only update one row at a time.
if I do
update sym2:sym from tab
it works, so I’m not sure why when I pass it to a function its passing the whole column
Thanks