9 lines
101 B
Perl
9 lines
101 B
Perl
|
package bytes;
|
||
|
|
||
|
sub length ($) {
|
||
|
BEGIN { bytes::import() }
|
||
|
return CORE::length($_[0]);
|
||
|
}
|
||
|
|
||
|
1;
|