Here are some possible examples + their syntax
Additioning a value of 1 to an integer: myInteger<+1;
1
myInteger<+1;
Subtracting a value of 1 to an integer: myInteger<-1;
myInteger<-1;
Multiplying a value of 1 to an integer: myInteger<*1;
myInteger<*1;
Dividing an integer by 1: myInteger</1;
myInteger</1;
Last updated 1 year ago