SET
or RES
or
TABLE
command.
nM> set table1 {ONE=1,TWO=2,THREE=3} nM> res table2 {FOUR=4,FIVE=5,SIX=6}
nM> set table3 {}
Don't Make This Mistake: |
---|
![]() res t:table {FOO=ten} will set FOO to the string "ten" even if there was a result
named TEN . If you want to force results translation, use a caret: res t:table {FOO=^ten}
|