This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Undo a mess trying Cwd.pm in its ext directory
[perl5.git] / lib / bytes_heavy.pl
... / ...
CommitLineData
1package bytes;
2
3sub length ($) {
4 BEGIN { bytes::import() }
5 return CORE::length($_[0]);
6}
7
81;