diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/arybase.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/arybase.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/lib/arybase.pm b/Master/tlpkg/tlperl/lib/arybase.pm index 1008684989a..7181748a312 100644 --- a/Master/tlpkg/tlperl/lib/arybase.pm +++ b/Master/tlpkg/tlperl/lib/arybase.pm @@ -1,6 +1,6 @@ package arybase; -our $VERSION = "0.05"; +our $VERSION = "0.06"; require XSLoader; XSLoader::load(); # This returns true, which makes require happy. @@ -14,7 +14,7 @@ arybase - Set indexing base via $[ =head1 SYNOPSIS $[ = 1; - + @a = qw(Sun Mon Tue Wed Thu Fri Sat); print $a[3], "\n"; # prints Tue @@ -44,7 +44,7 @@ It affects the following operations: splice @array, $index, ... each @array keys @array - + index $string, $substring # return value is affected pos $string substr $string, $offset, ... |