Questa è una traduzione automatica. Il messaggio originale è disponibile in
Inglese.
Operatori
Operatore | Descrizione | Esempio |
---|
= | Valore impostato | myIntegerValue = 10; |
== | uguale | thisIsTrue = (‘A’ == ‘A’); |
∼= | non uguale | thisIsTrue = (‘A’ ~= ‘B’); |
< | più piccolo | thisIsTrue = 2 < 3; |
<= | minore o uguale | thisIsTrue = 2 <= 3; |
> | più grande | thisIsTrue = 3 > 2; |
>= | maggiore o uguale | thisIsTrue = 3 >= 2; |
not | logico NOT | thisIsTrue = not false; |
and | AND logico | thisIsTrue = true and (not false); |
or | OR logico | thisIsTrue = true or false; |
.. | Aggiungi testo | NewText = Variabile1 … ‘ è aggiunto a ‘ … Variabile 2; |