diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 06:33:49 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 06:33:49 +0000 |
commit | 8058d7abf600e878367b422ec507695e4ac6f25a (patch) | |
tree | 532a05dfd24d4fd343743294e4c48d2112ceba1f /lib/bytes_heavy.pl | |
parent | 66558a1012141f943df65dc612575097c38aed90 (diff) | |
download | perl-8058d7abf600e878367b422ec507695e4ac6f25a.tar.gz |
rename byte:: to bytes::
p4raw-id: //depot/perl@5133
Diffstat (limited to 'lib/bytes_heavy.pl')
-rw-r--r-- | lib/bytes_heavy.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/bytes_heavy.pl b/lib/bytes_heavy.pl new file mode 100644 index 0000000000..ec0558561d --- /dev/null +++ b/lib/bytes_heavy.pl @@ -0,0 +1,8 @@ +package byte; + +sub length ($) { + BEGIN { byte::import() } + return CORE::length($_[0]); +} + +1; |