<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package locale;

our $VERSION = '1.00';

$locale::hint_bits = 0x4;

sub import {
    $^H |= $locale::hint_bits;
}

sub unimport {
    $^H &amp;= ~$locale::hint_bits;
}

1;
</pre></body></html>