summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/integer.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/integer.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/integer.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/integer.pm b/Master/tlpkg/tlperl/lib/integer.pm
index caa1ea6951f..60a609cd042 100644
--- a/Master/tlpkg/tlperl/lib/integer.pm
+++ b/Master/tlpkg/tlperl/lib/integer.pm
@@ -1,6 +1,6 @@
package integer;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
=head1 NAME
@@ -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