Using the command line, I've defined two variables
set a = 5
set b = 5
In addition I've set another variable, c
, in which I am trying to assign a
's and b
's value.
I tried -
set c = $($a+$b)
But I've got Illegal variable name.
I tried -
set c
c = $($a+$b)
But I've got Illegal variable name.
, again.