diff options
Diffstat (limited to 'Master/perltl/lib/bytes_heavy.pl')
-rw-r--r-- | Master/perltl/lib/bytes_heavy.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Master/perltl/lib/bytes_heavy.pl b/Master/perltl/lib/bytes_heavy.pl new file mode 100644 index 00000000000..47bdbf91b0d --- /dev/null +++ b/Master/perltl/lib/bytes_heavy.pl @@ -0,0 +1,8 @@ +package bytes; + +sub length ($) { + BEGIN { bytes::import() } + return CORE::length($_[0]); +} + +1; |