I have the following two []mom objects:
ws.[]nl 2 3
fns
fns2
vars
test.[]nl 3
vars
vars2
I would like to add vars in test and vars2 in test to my ws object. Here is my attempt:
ws.[]fx test.[]cr 'vars'
vars
ws.[]fx test.[]cr 'vars2'
1
Does anyone know why I am having trouble adding function 'vars2' to []mom object ws?
If I try to add vars2 outside of test to ws I get the same result i.e.
ws.[]fx []cr 'vars'
vars
ws.[]fx []cr 'vars2'
1
Does anyone know why I can't add 'vars2'. I can initialize a []mom reference with vars2 without any problem. I just can't add to an existing object...
/Joe