summaryrefslogtreecommitdiff
path: root/lib/integer.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/integer.pm')
-rw-r--r--lib/integer.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/integer.pm b/lib/integer.pm
index caa1ea6951..df39e76248 100644
--- a/lib/integer.pm
+++ b/lib/integer.pm
@@ -38,7 +38,7 @@ integers, i.e., -(2**31) .. (2**31-1) on 32-bit architectures, and
$z = 2.7;
$a = 2**31 - 1; # Largest positive integer on 32-bit machines
$, = ", ";
- print $x, -$x, $x + $y, $x - $y, $x / $y, $x * $y, $y == $z, $a, $a + 1;
+ print $x, -$x, $x+$y, $x-$y, $x/$y, $x*$y, $y==$z, $a, $a+1;
will print: 5.8, -5, 7, 3, 2, 10, 1, 2147483647, -2147483648