10-19-2024, 03:23 AM
In the SICK interpreter the following triple operators exist:
Code: (Select All)
Triple variable assignment operators:
+++ increment variable by one.
--- decrement variable by one.
!!= assign not value, for example: x!!=10
&&= assign and value
||= assign or value
++= assign addition value
--= assign negative value
**= assign multiple value
//= assign division value
\\= assign integer division value
^^= assign power value
^+= exponentiate value
^-= exponentiate negative value
<<= shift left by multiples of 2
>>= shift right by multiples of 2