Help for this page

Select Code to Download


  1. or download this
    use utf8;
    sub ff { print utf8::is_utf8($_[0]) ? 1 : 0, "\n"; }
    ...
    { no strict; ff(asd); }  # 1
    ff(-asd);                # 1
    ff(asd::);               # 1