1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-06 13:09:50 +00:00
freebsd/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;