-Lvalue is a variable identifier. Rvalue can be variable, a constant (constant
-must be given in double quotes) or an expression consisting of variables,
-constants and binary operations
-.B .
-,
-.B +
-,
-.B \-
-,
-.B *
-and
-.B /
-, operation
-.B .
-stands for string contatenations, the rest of them are arithmetic operations.
-Doing arithmetic operations makes sense only on integers. Precedence of the
-operations can be specified using parentheses.
+Lvalue is a variable identifier. Rvalue can be variable, a constant (either a
+string constant that must be given in double quotes or an integer) or an
+expression consisting of variables, constants and binary operations
+\fB.\fP, \fB+\fP, \fB\-\fP, \fB*\fP and \fB/\fP, operation \fB.\fP stands for string
+contatenations, the rest of them are arithmetic operations. Doing arithmetic
+operations makes sense only on integers. Precedence of the operations can be
+specified using parentheses, arithmetic operators have a usual priority,
+string concatenations has the lowest priority.