diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/bigint.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/bigint.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/tlperl/lib/bigint.pm b/Master/tlpkg/tlperl/lib/bigint.pm index 4852590e8f5..926742ac314 100644 --- a/Master/tlpkg/tlperl/lib/bigint.pm +++ b/Master/tlpkg/tlperl/lib/bigint.pm @@ -1,7 +1,7 @@ package bigint; use 5.006; -$VERSION = '0.27'; +$VERSION = '0.29'; use Exporter; @ISA = qw( Exporter ); @EXPORT_OK = qw( PI e bpi bexp ); @@ -353,10 +353,10 @@ In practice this makes seldom a difference as B<parts and results> of expressions will be truncated anyway, but this can, for instance, affect the return value of subroutines: - sub three_integer { use integer; return 3.2; } - sub three_bigint { use bigint; return 3.2; } + sub three_integer { use integer; return 3.2; } + sub three_bigint { use bigint; return 3.2; } - print three_integer(), " ", three_bigint(),"\n"; # prints "3.2 3" + print three_integer(), " ", three_bigint(),"\n"; # prints "3.2 3" =head2 Options |