Variable Modification

As stated in the IDD,

" Basically the syntax treats variables as "objects", so if you want to increase an integer's value you need to call that variable (e.g. 'myInteger') and to that object (e.g. 'myInteger<') add a value of 1 to the total (e.g. 'myInteger<+1') "

Variable modification example

  • Adding a value of '1' to the total value of an integer: myInteger<+1;

  • Subtracting a value of '1' to the total value of an integer: myInteger<-1;

Last updated