Questa è una traduzione automatica. Il messaggio originale è disponibile in Inglese.

Operatori

OperatoreDescrizioneEsempio
=Valore impostatomyIntegerValue = 10;
==ugualethisIsTrue = (‘A’ == ‘A’);
∼=non ugualethisIsTrue = (‘A’ ~= ‘B’);
<più piccolothisIsTrue = 2 < 3;
<=minore o ugualethisIsTrue = 2 <= 3;
>più grandethisIsTrue = 3 > 2;
>=maggiore o ugualethisIsTrue = 3 >= 2;
notlogico NOTthisIsTrue = not false;
andAND logicothisIsTrue = true and (not false);
orOR logicothisIsTrue = true or false;
..Aggiungi testoNewText = Variabile1 … ‘ è aggiunto a ‘ … Variabile 2;