Domo 0 Posted December 20, 2015 How do you add variables? like: .@TotalVar = .@Var1 + .@Var2 These are just integers. and sorry, first time doing adding. lol Quote Share this post Link to post Share on other sites
0 Legend 43 Posted December 20, 2015 (edited) You can add variables by doing this: set .@TotalVar, .@var1+.@var2; Edited December 20, 2015 by Legend 1 Domo reacted to this Quote Share this post Link to post Share on other sites
0 Dastgir 1246 Posted December 20, 2015 .@a = .@b+.@c; // stores .@b+.@c in .@a.@a += .@b; // equivalent to .@a = .@a+.@b 1 Domo reacted to this Quote Share this post Link to post Share on other sites
How do you add variables?
like:
.@TotalVar = .@Var1 + .@Var2
These are just integers.
and sorry, first time doing adding. lol
Share this post
Link to post
Share on other sites