summaryrefslogtreecommitdiff
path: root/lib/byte_heavy.pl
blob: ec0558561d29f147e9b608ea248c47772ab871dd (plain)
1
2
3
4
5
6
7
8
package byte;

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

1;