freebsd-dev/contrib/perl5/lib/bytes_heavy.pl
2000-06-25 11:04:01 +00:00

9 lines
101 B
Perl

package bytes;
sub length ($) {
BEGIN { bytes::import() }
return CORE::length($_[0]);
}
1;