1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package locale; our $VERSION = '1.00'; $locale::hint_bits = 0x4; sub import { $^H |= $locale::hint_bits; } sub unimport { $^H &= ~$locale::hint_bits; } 1;