diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-04 11:38:09 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-04 11:38:09 (GMT) |
commit | 274f081025d8d5f249ccc44025944919f4190933 (patch) | |
tree | 722adc5a7c81396cdd5aaff3f6aa12d2086cac74 /doc/expr.n | |
parent | fba10e86152fd2c3599b2836ee42a82e7501260a (diff) | |
parent | 76ed3d5b55523e5ad81903f37607050fb37490f9 (diff) | |
download | tcl-274f081025d8d5f249ccc44025944919f4190933.zip tcl-274f081025d8d5f249ccc44025944919f4190933.tar.gz tcl-274f081025d8d5f249ccc44025944919f4190933.tar.bz2 |
Make packages msgcat and tcltest work unmodified in "novem". Make more test-cases work unmodified in "novem".
Diffstat (limited to 'doc/expr.n')
-rw-r--r-- | doc/expr.n | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -135,7 +135,7 @@ absolute value of the divisor, has the same sign as the divisor. .RS .PP When applied to integers, division and remainder can be -considered to partition the number line into a sequence of +considered to partition the number line into a sequence of adjacent non-overlapping pieces, where each piece is the size of the divisor; the quotient identifies which piece the dividend lies within, and the remainder identifies where within that piece the dividend lies. A @@ -199,10 +199,10 @@ Logical OR. If both operands are false, the result is 0, or 1 otherwise. If-then-else, as in C. If \fIx\fR is false , the result is the value of \fIy\fR. Otherwise the result is the value of \fIz\fR. .PP -The exponentiation operator promotes types in the same way that the multiply -and divide operators do, and the result is is the same as the result of +The exponentiation operator promotes types in the same way that the multiply +and divide operators do, and the result is is the same as the result of \fBpow\fR. -Exponentiation groups right-to-left within a precedence level. Other binary +Exponentiation groups right-to-left within a precedence level. Other binary operators group left-to-right. For example, the value of .PP .CS @@ -217,7 +217,7 @@ is 0, while the value of .PP is 512. .PP -As in C, \fB&&\fR, \fB||\fR, and \fB?:\fR feature +As in C, \fB&&\fR, \fB||\fR, and \fB?:\fR feature .QW "lazy evaluation" , which means that operands are not evaluated if they are not needed to determine the outcome. For example, in |