initial import of HTML::String
[scpubgit/HTML-String.git] / lib / HTML / String / Overload.pm
CommitLineData
e1b4b35c 1package HTML::String::Overload;
2
3use strictures 1;
4use HTML::String;
5use B::Hooks::EndOfScope;
6use overload '';
7
8sub import {
9 overload::constant q => \&html;
10 on_scope_end {
11 overload::remove_constant('q');
12 }
13}
14
151;