bytes_heavy.pl revision 7c478bd95313f5f23a4c958a745db2134aa03244
package bytes;
sub length ($) {
BEGIN { bytes::import() }
return CORE::length($_[0]);
}
1;