The Blog post concerning the release of TexCode 1.4 previously stated that the set
function would have been able to set variables to multiple variables' values combined. For example:
int a ;
int b = 5
int c = 6
set a to b c ;
Console Output
a=11
(the sum of b
and c
)
However, due to difficulties implementing this feature, it has been decided that this capability will not be included in the next release. The add
(to be released in TexCode 1.4) will be able to accomplish the same task. For example:
int b = 5
int a = b
int c = 6
add c to a
Console Output
a=11
(the sum of b
and c
)