Menu

TexCode 1.4 set Function Change

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)

Posted by BalinKingOfMoria 2012-06-23

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.