This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
default warnLevel and dieLevel to 0 in debugger (from Tom
[perl5.git] / lib / bytes_heavy.pl
1 package bytes;
2
3 sub length ($) {
4     BEGIN { bytes::import() }
5     return CORE::length($_[0]);
6 }
7
8 1;