Jest to tłumaczenie automatyczne. Pierwotne stanowisko jest dostępne w
angielski.
Operatorzy
Operator | Opis | Przykład |
---|
= | Ustawiona wartość | myIntegerValue = 10; |
== | równy | thisIsTrue = (’A’ == 'A’); |
∼= | nie równy | thisIsTrue = (’A’ ~= 'B’); |
< | mniejszy | thisIsTrue = 2 < 3; |
<= | mniejszy lub równy | thisIsTrue = 2 <= 3; |
> | większy | thisIsTrue = 3 > 2; |
>= | większe lub równe | thisIsTrue = 3 >= 2; |
not | logiczne NOT | thisIsTrue = not false; |
and | logiczne AND | thisIsTrue = true and (not false); |
or | logiczne OR | thisIsTrue = true or false; |
.. | Dodaj tekst | NewText = Variable1 .. ’ jest dodawany do ’ …. Zmienna 2; |