summaryrefslogtreecommitdiff
path: root/lib/bytes_heavy.pl
blob: 47bdbf91b0d0802b813277f5ac2336f7041780c7 (plain)
1
2
3
4
5
6
7
8
package bytes;

sub length ($) {
    BEGIN { bytes::import() }
    return CORE::length($_[0]);
}

1;