{{ }}
are used. To make a field editable in the text, the name of the field must be covered by two mustaches on both sides: {{ field }}
. Without mustaches, the fields are not usable.+
Add-
Subtract*
Multiply/
Divide==
is equal to!=
is not equal to>
is greater than<
is smaller than>=
is greater than or > equal to<=
is smaller than or > equal to&&
AND ("and")||
OR ("or")!
NOT ("not")+
), we can combine two strings. text1 = "Two strings "
text2 = "combined"
text3 = text1 + text2
"Two strings combined"
.